Skip to content

Examples#

Index > SESV2 > Examples

Auto-generated documentation for SESV2 type annotations stubs module types-aiobotocore-sesv2.

Client#

Implicit type annotations#

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

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

# SESV2Client usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("sesv2") as client:  # (1)
    result = await client.batch_get_metric_data()  # (2)
  1. client: SESV2Client
  2. result: BatchGetMetricDataResponseTypeDef

Explicit type annotations#

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

# SESV2Client usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_sesv2.client import SESV2Client
from types_aiobotocore_sesv2.type_defs import BatchGetMetricDataResponseTypeDef
from types_aiobotocore_sesv2.type_defs import BatchGetMetricDataRequestRequestTypeDef


session = get_session()

async with session.create_client("sesv2") as client:
    client: SESV2Client
    kwargs: BatchGetMetricDataRequestRequestTypeDef = {...}
    result: BatchGetMetricDataResponseTypeDef = await client.batch_get_metric_data(**kwargs)