Skip to content

Typed dictionaries

Index > SageMakerRuntime > Typed dictionaries

Auto-generated documentation for SageMakerRuntime type annotations stubs module mypy-boto3-sagemaker-runtime.

InvokeEndpointAsyncInputRequestTypeDef

Usage Example
from mypy_boto3_sagemaker_runtime.type_defs import InvokeEndpointAsyncInputRequestTypeDef

def get_value() -> InvokeEndpointAsyncInputRequestTypeDef:
    return {
        "EndpointName": ...,
        "InputLocation": ...,
    }
Definition
class InvokeEndpointAsyncInputRequestTypeDef(TypedDict):
    EndpointName: str,
    InputLocation: str,
    ContentType: NotRequired[str],
    Accept: NotRequired[str],
    CustomAttributes: NotRequired[str],
    InferenceId: NotRequired[str],
    RequestTTLSeconds: NotRequired[int],
    InvocationTimeoutSeconds: NotRequired[int],

ResponseMetadataTypeDef

Usage Example
from mypy_boto3_sagemaker_runtime.type_defs import ResponseMetadataTypeDef

def get_value() -> ResponseMetadataTypeDef:
    return {
        "RequestId": ...,
        "HostId": ...,
        "HTTPStatusCode": ...,
        "HTTPHeaders": ...,
        "RetryAttempts": ...,
    }
Definition
class ResponseMetadataTypeDef(TypedDict):
    RequestId: str,
    HostId: str,
    HTTPStatusCode: int,
    HTTPHeaders: Dict[str, str],
    RetryAttempts: int,

InvokeEndpointInputRequestTypeDef

Usage Example
from mypy_boto3_sagemaker_runtime.type_defs import InvokeEndpointInputRequestTypeDef

def get_value() -> InvokeEndpointInputRequestTypeDef:
    return {
        "EndpointName": ...,
        "Body": ...,
    }
Definition
class InvokeEndpointInputRequestTypeDef(TypedDict):
    EndpointName: str,
    Body: Union[str, bytes, IO[Any], StreamingBody],
    ContentType: NotRequired[str],
    Accept: NotRequired[str],
    CustomAttributes: NotRequired[str],
    TargetModel: NotRequired[str],
    TargetVariant: NotRequired[str],
    TargetContainerHostname: NotRequired[str],
    InferenceId: NotRequired[str],
    EnableExplanations: NotRequired[str],

InvokeEndpointAsyncOutputTypeDef

Usage Example
from mypy_boto3_sagemaker_runtime.type_defs import InvokeEndpointAsyncOutputTypeDef

def get_value() -> InvokeEndpointAsyncOutputTypeDef:
    return {
        "InferenceId": ...,
        "OutputLocation": ...,
        "ResponseMetadata": ...,
    }
Definition
class InvokeEndpointAsyncOutputTypeDef(TypedDict):
    InferenceId: str,
    OutputLocation: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef

InvokeEndpointOutputTypeDef

Usage Example
from mypy_boto3_sagemaker_runtime.type_defs import InvokeEndpointOutputTypeDef

def get_value() -> InvokeEndpointOutputTypeDef:
    return {
        "Body": ...,
        "ContentType": ...,
        "InvokedProductionVariant": ...,
        "CustomAttributes": ...,
        "ResponseMetadata": ...,
    }
Definition
class InvokeEndpointOutputTypeDef(TypedDict):
    Body: StreamingBody,
    ContentType: str,
    InvokedProductionVariant: str,
    CustomAttributes: str,
    ResponseMetadata: ResponseMetadataTypeDef,  # (1)
  1. See ResponseMetadataTypeDef