Skip to content

Examples#

Index > Chime > Examples

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

Client#

Implicit type annotations#

Can be used with types-aiobotocore[chime] package installed.

Write your Chime code as usual, type checking and code completion should work out of the box.

# ChimeClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("chime") as client:  # (1)
    result = await client.associate_phone_numbers_with_voice_connector()  # (2)
  1. client: ChimeClient
  2. result: AssociatePhoneNumbersWithVoiceConnectorResponseTypeDef
# ListAccountsPaginator usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("chime") as client:  # (1)
    paginator = client.get_paginator("list_accounts")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: ChimeClient
  2. paginator: ListAccountsPaginator
  3. item: ListAccountsResponseTypeDef

Explicit type annotations#

With types-aiobotocore-lite[chime] or a standalone types_aiobotocore_chime package, you have to explicitly specify client: ChimeClient type annotation.

All other type annotations are optional, as types should be discovered automatically. However, these type annotations can be helpful in your functions and methods.

# ChimeClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_chime.client import ChimeClient
from types_aiobotocore_chime.type_defs import AssociatePhoneNumbersWithVoiceConnectorResponseTypeDef
from types_aiobotocore_chime.type_defs import AssociatePhoneNumbersWithVoiceConnectorRequestRequestTypeDef


session = get_session()

async with session.create_client("chime") as client:
    client: ChimeClient
    kwargs: AssociatePhoneNumbersWithVoiceConnectorRequestRequestTypeDef = {...}
    result: AssociatePhoneNumbersWithVoiceConnectorResponseTypeDef = await client.associate_phone_numbers_with_voice_connector(**kwargs)
# ListAccountsPaginator usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_chime.client import ChimeClient
from types_aiobotocore_chime.paginator import ListAccountsPaginator
from types_aiobotocore_chime.type_defs import ListAccountsResponseTypeDef


session = get_session()

async with session.create_client("chime") as client:
    client: ChimeClient
    paginator: ListAccountsPaginator = client.get_paginator("list_accounts")
    async for item in paginator.paginate(...):
        item: ListAccountsResponseTypeDef
        print(item)