Skip to content

Bedrock module#

Index > Bedrock

Auto-generated documentation for Bedrock type annotations stubs module mypy-boto3-bedrock.

How to install#

VSCode extension#

Add AWS Boto3 extension to your VSCode and run AWS boto3: Quick Start command.

Click Modify and select boto3 common and Bedrock.

From PyPI with pip#

Install boto3-stubs for Bedrock service.

# install with boto3 type annotations
python -m pip install 'boto3-stubs[bedrock]'


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


# standalone installation
python -m pip install mypy-boto3-bedrock

How to uninstall#

python -m pip uninstall -y mypy-boto3-bedrock

Usage#

Code samples can be found in Examples.

BedrockClient#

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

# BedrockClient usage example

from boto3.session import Session

from mypy_boto3_bedrock.client import BedrockClient

def get_client() -> BedrockClient:
    return Session().client("bedrock")

Paginators#

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

# ListCustomModelsPaginator usage example

from boto3.session import Session

from mypy_boto3_bedrock.paginator import ListCustomModelsPaginator

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

Literals#

Type annotations for literals used in methods and schema.

# CommitmentDurationType usage example

from mypy_boto3_bedrock.literals import CommitmentDurationType

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

Type definitions#

Type annotations for type definitions used in methods and schema.