Skip to content

AugmentedAIRuntime module

Index > AugmentedAIRuntime

Auto-generated documentation for AugmentedAIRuntime type annotations stubs module types-aiobotocore-sagemaker-a2i-runtime.

How to install

From PyPI with pip

Install types-aioboto3 for AugmentedAIRuntime service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[sagemaker-a2i-runtime]'


# Lite version does not provide session.client/resource overloads
# it is more RAM-friendly, but requires explicit type annotations
python -m pip install 'types-aioboto3-lite[sagemaker-a2i-runtime]'


# standalone installation
python -m pip install types-aiobotocore-sagemaker-a2i-runtime

How to uninstall

python -m pip uninstall -y types-aiobotocore-sagemaker-a2i-runtime

Usage

Code samples can be found in Examples.

AugmentedAIRuntimeClient

Type annotations and code completion for session.client("sagemaker-a2i-runtime") as AugmentedAIRuntimeClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_sagemaker_a2i_runtime.client import AugmentedAIRuntimeClient


session = Session()
async with session.client("sagemaker-a2i-runtime") as client:
    client: AugmentedAIRuntimeClient

Paginators

Type annotations and code completion for paginators from session.client("sagemaker-a2i-runtime").get_paginator("...").

Usage example
from types_aiobotocore_sagemaker_a2i_runtime.paginator import ListHumanLoopsPaginator

def get_list_human_loops_paginator() -> ListHumanLoopsPaginator:
    return client.get_paginator("list_human_loops"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_sagemaker_a2i_runtime.literals import ContentClassifierType

def get_value() -> ContentClassifierType:
    return "FreeOfAdultContent"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_sagemaker_a2i_runtime.type_defs import DeleteHumanLoopRequestRequestTypeDef

def get_value() -> DeleteHumanLoopRequestRequestTypeDef:
    return {
        "HumanLoopName": ...,
    }