Skip to content

Examples#

Index > SimpleDB > Examples

Auto-generated documentation for SimpleDB type annotations stubs module types-aiobotocore-sdb.

Client#

Implicit type annotations#

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

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

# SimpleDBClient usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("sdb") as client:  # (1)
    result = await client.batch_delete_attributes()  # (2)
  1. client: SimpleDBClient
  2. result: EmptyResponseMetadataTypeDef
# ListDomainsPaginator usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("sdb") as client:  # (1)
    paginator = client.get_paginator("list_domains")  # (2)
    async for item in paginator.paginate(...):
        print(item)  # (3)
  1. client: SimpleDBClient
  2. paginator: ListDomainsPaginator
  3. item: ListDomainsResultTypeDef

Explicit type annotations#

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

# SimpleDBClient usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_sdb.client import SimpleDBClient
from types_aiobotocore_sdb.type_defs import EmptyResponseMetadataTypeDef
from types_aiobotocore_sdb.type_defs import BatchDeleteAttributesRequestRequestTypeDef


session = get_session()

async with session.create_client("sdb") as client:
    client: SimpleDBClient
    kwargs: BatchDeleteAttributesRequestRequestTypeDef = {...}
    result: EmptyResponseMetadataTypeDef = await client.batch_delete_attributes(**kwargs)
# ListDomainsPaginator usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_sdb.client import SimpleDBClient
from types_aiobotocore_sdb.paginator import ListDomainsPaginator
from types_aiobotocore_sdb.type_defs import ListDomainsResultTypeDef


session = get_session()

async with session.create_client("sdb") as client:
    client: SimpleDBClient
    paginator: ListDomainsPaginator = client.get_paginator("list_domains")
    async for item in paginator.paginate(...):
        item: ListDomainsResultTypeDef
        print(item)