Skip to content

Chime module

Index > Chime

Auto-generated documentation for Chime type annotations stubs module types-aiobotocore-chime.

How to install

From PyPI with pip

Install types-aioboto3 for Chime service.

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


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


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

How to uninstall

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

Usage

Code samples can be found in Examples.

ChimeClient

Type annotations and code completion for session.client("chime") as ChimeClient boto3 documentation

Usage example
from aioboto3.session import Session

from types_aiobotocore_chime.client import ChimeClient


session = Session()
async with session.client("chime") as client:
    client: ChimeClient

Paginators

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

Usage example
from types_aiobotocore_chime.paginator import ListAccountsPaginator

def get_list_accounts_paginator() -> ListAccountsPaginator:
    return client.get_paginator("list_accounts"))

Literals

Type annotations for literals used in methods and schema.

Usage example
from types_aiobotocore_chime.literals import AccountStatusType

def get_value() -> AccountStatusType:
    return "Active"

Typed dictionaries

Type annotations for typed dictionaries used in methods and schema.

Usage example
from types_aiobotocore_chime.type_defs import AccountSettingsTypeDef

def get_value() -> AccountSettingsTypeDef:
    return {
        "DisableRemoteControl": ...,
    }