import * as __aws_sdk_types from "@aws-sdk/types"; /** * InvokeEndpointOutput shape */ export interface InvokeEndpointOutput extends __aws_sdk_types.MetadataBearer { /** *
Includes the inference provided by the model.
For information about the format of the response body, see Common Data Formats—Inference.
*/ Body: Uint8Array; /** *The MIME type of the inference returned in the response body.
*/ ContentType?: string; /** *Identifies the production variant that was invoked.
*/ InvokedProductionVariant?: string; /** * */ CustomAttributes?: string; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }