Skip to content

Examples#

Index > Support > Examples

Auto-generated documentation for Support type annotations stubs module types-aiobotocore-support.

Client#

Implicit type annotations#

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

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

# SupportClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("support") as client:  # (1)
    result = await client.add_attachments_to_set()  # (2)
  1. client: SupportClient
  2. result: AddAttachmentsToSetResponseTypeDef
# DescribeCasesPaginator usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("support") as client:  # (1)
    paginator = client.get_paginator("describe_cases")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: SupportClient
  2. paginator: DescribeCasesPaginator
  3. item: DescribeCasesResponseTypeDef

Explicit type annotations#

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

# SupportClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_support.client import SupportClient
from types_aiobotocore_support.type_defs import AddAttachmentsToSetResponseTypeDef
from types_aiobotocore_support.type_defs import AddAttachmentsToSetRequestRequestTypeDef


session = get_session()

async with session.create_client("support") as client:
    client: SupportClient
    kwargs: AddAttachmentsToSetRequestRequestTypeDef = {...}
    result: AddAttachmentsToSetResponseTypeDef = await client.add_attachments_to_set(**kwargs)
# DescribeCasesPaginator usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_support.client import SupportClient
from types_aiobotocore_support.paginator import DescribeCasesPaginator
from types_aiobotocore_support.type_defs import DescribeCasesResponseTypeDef


session = get_session()

async with session.create_client("support") as client:
    client: SupportClient
    paginator: DescribeCasesPaginator = client.get_paginator("describe_cases")
    async for item in paginator.paginate(...):
        item: DescribeCasesResponseTypeDef
        print(item)