Skip to content

Examples#

Index > Proton > Examples

Auto-generated documentation for Proton type annotations stubs module types-aiobotocore-proton.

Client#

Implicit type annotations#

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

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

# ProtonClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("proton") as client:  # (1)
    result = await client.accept_environment_account_connection()  # (2)
  1. client: ProtonClient
  2. result: AcceptEnvironmentAccountConnectionOutputTypeDef
# ListComponentOutputsPaginator usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("proton") as client:  # (1)
    paginator = client.get_paginator("list_component_outputs")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: ProtonClient
  2. paginator: ListComponentOutputsPaginator
  3. item: ListComponentOutputsOutputTypeDef
# ComponentDeletedWaiter usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("proton") as client:  # (1)
    waiter = client.get_waiter("component_deleted")  # (2)
    await waiter.wait()
  1. client: ProtonClient
  2. waiter: ComponentDeletedWaiter

Explicit type annotations#

With types-aiobotocore-lite[proton] or a standalone types_aiobotocore_proton package, you have to explicitly specify client: ProtonClient 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.

# ProtonClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_proton.client import ProtonClient
from types_aiobotocore_proton.type_defs import AcceptEnvironmentAccountConnectionOutputTypeDef
from types_aiobotocore_proton.type_defs import AcceptEnvironmentAccountConnectionInputRequestTypeDef


session = get_session()

async with session.create_client("proton") as client:
    client: ProtonClient
    kwargs: AcceptEnvironmentAccountConnectionInputRequestTypeDef = {...}
    result: AcceptEnvironmentAccountConnectionOutputTypeDef = await client.accept_environment_account_connection(**kwargs)
# ListComponentOutputsPaginator usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_proton.client import ProtonClient
from types_aiobotocore_proton.paginator import ListComponentOutputsPaginator
from types_aiobotocore_proton.type_defs import ListComponentOutputsOutputTypeDef


session = get_session()

async with session.create_client("proton") as client:
    client: ProtonClient
    paginator: ListComponentOutputsPaginator = client.get_paginator("list_component_outputs")
    async for item in paginator.paginate(...):
        item: ListComponentOutputsOutputTypeDef
        print(item)
# ComponentDeletedWaiter usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_proton.client import ProtonClient
from types_aiobotocore_proton.waiter import ComponentDeletedWaiter


session = get_session()

async with session.create_client("proton") as client:
    client: ProtonClient
    waiter: ComponentDeletedWaiter = client.get_waiter("component_deleted")
    await waiter.wait()