Skip to content

Examples#

Index > LexRuntimeV2 > Examples

Auto-generated documentation for LexRuntimeV2 type annotations stubs module types-aiobotocore-lexv2-runtime.

Client#

Implicit type annotations#

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

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

# LexRuntimeV2Client usage example

from aiobotocore.session import get_session


session = get_session()

async with session.create_client("lexv2-runtime") as client:  # (1)
    result = await client.delete_session()  # (2)
  1. client: LexRuntimeV2Client
  2. result: DeleteSessionResponseTypeDef

Explicit type annotations#

With types-aiobotocore-lite[lexv2-runtime] or a standalone types_aiobotocore_lexv2_runtime package, you have to explicitly specify client: LexRuntimeV2Client 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.

# LexRuntimeV2Client usage example with type annotations

from aiobotocore.session import get_session

from types_aiobotocore_lexv2_runtime.client import LexRuntimeV2Client
from types_aiobotocore_lexv2_runtime.type_defs import DeleteSessionResponseTypeDef
from types_aiobotocore_lexv2_runtime.type_defs import DeleteSessionRequestRequestTypeDef


session = get_session()

async with session.create_client("lexv2-runtime") as client:
    client: LexRuntimeV2Client
    kwargs: DeleteSessionRequestRequestTypeDef = {...}
    result: DeleteSessionResponseTypeDef = await client.delete_session(**kwargs)