Skip to content

Examples#

Index > LexRuntimeService > Examples

Auto-generated documentation for LexRuntimeService type annotations stubs module mypy-boto3-lex-runtime.

Client#

Implicit type annotations#

Can be used with boto3-stubs[lex-runtime] package installed.

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

# LexRuntimeServiceClient usage example

from boto3.session import Session


session = Session()

client = session.client("lex-runtime")  # (1)
result = client.delete_session()  # (2)
  1. client: LexRuntimeServiceClient
  2. result: DeleteSessionResponseTypeDef

Explicit type annotations#

With boto3-stubs-lite[lex-runtime] or a standalone mypy_boto3_lex_runtime package, you have to explicitly specify client: LexRuntimeServiceClient 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.

# LexRuntimeServiceClient usage example with type annotations

from boto3.session import Session

from mypy_boto3_lex_runtime.client import LexRuntimeServiceClient
from mypy_boto3_lex_runtime.type_defs import DeleteSessionResponseTypeDef
from mypy_boto3_lex_runtime.type_defs import DeleteSessionRequestRequestTypeDef


session = Session()

client: LexRuntimeServiceClient = session.client("lex-runtime")

kwargs: DeleteSessionRequestRequestTypeDef = {...}
result: DeleteSessionResponseTypeDef = client.delete_session(**kwargs)