Skip to content

Bedrock module#

Index > Bedrock

Auto-generated documentation for Bedrock type annotations stubs module types-aiobotocore-bedrock.

How to install#

From PyPI with pip#

Install types-aioboto3 for Bedrock service.

# install with aioboto3 type annotations
python -m pip install 'types-aioboto3[bedrock]'


# 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[bedrock]'


# standalone installation
python -m pip install types-aiobotocore-bedrock

How to uninstall#

python -m pip uninstall -y types-aiobotocore-bedrock

Usage#

Code samples can be found in Examples.

BedrockClient#

Type annotations and code completion for session.client("bedrock") as BedrockClient boto3 documentation

# BedrockClient usage example

from aioboto3.session import Session

from types_aiobotocore_bedrock.client import BedrockClient


session = Session()
async with session.client("bedrock") as client:
    client: BedrockClient

Paginators#

Type annotations and code completion for paginators from session.client("bedrock").get_paginator("...").

# ListCustomModelsPaginator usage example

from types_aiobotocore_bedrock.paginator import ListCustomModelsPaginator

def get_list_custom_models_paginator() -> ListCustomModelsPaginator:
    return client.get_paginator("list_custom_models"))

Literals#

Type annotations for literals used in methods and schema.

# CommitmentDurationType usage example

from types_aiobotocore_bedrock.literals import CommitmentDurationType

def get_value() -> CommitmentDurationType:
    return "OneMonth"

Type definitions#

Type annotations for type definitions used in methods and schema.