Examples#
Index > LexModelBuildingService > Examples
Auto-generated documentation for LexModelBuildingService type annotations stubs module types-boto3-lex-models.
Client#
Implicit type annotations#
Can be used with types-boto3[lex-models]
package installed.
Write your LexModelBuildingService
code as usual,
type checking and code completion should work out of the box.
Client method usage example#
# LexModelBuildingServiceClient usage example
from boto3.session import Session
session = Session()
client = session.client("lex-models") # (1)
result = client.create_bot_version() # (2)
- client: LexModelBuildingServiceClient
- result: CreateBotVersionResponseTypeDef
Paginator usage example#
# GetBotAliasesPaginator usage example
from boto3.session import Session
session = Session()
client = session.client("lex-models") # (1)
paginator = client.get_paginator("get_bot_aliases") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBotAliasesPaginator
- item: GetBotAliasesResponseTypeDef
Explicit type annotations#
With types-boto3-lite[lex-models]
or a standalone types_boto3_lex_models
package, you have to explicitly specify client: LexModelBuildingServiceClient
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.
Client method usage example#
# LexModelBuildingServiceClient usage example with type annotations
from boto3.session import Session
from types_boto3_lex_models.client import LexModelBuildingServiceClient
from types_boto3_lex_models.type_defs import CreateBotVersionResponseTypeDef
from types_boto3_lex_models.type_defs import CreateBotVersionRequestTypeDef
session = Session()
client: LexModelBuildingServiceClient = session.client("lex-models")
kwargs: CreateBotVersionRequestTypeDef = {...}
result: CreateBotVersionResponseTypeDef = client.create_bot_version(**kwargs)
Paginator usage example#
# GetBotAliasesPaginator usage example with type annotations
from boto3.session import Session
from types_boto3_lex_models.client import LexModelBuildingServiceClient
from types_boto3_lex_models.paginator import GetBotAliasesPaginator
from types_boto3_lex_models.type_defs import GetBotAliasesResponseTypeDef
session = Session()
client: LexModelBuildingServiceClient = session.client("lex-models")
paginator: GetBotAliasesPaginator = client.get_paginator("get_bot_aliases")
for item in paginator.paginate(...):
item: GetBotAliasesResponseTypeDef
print(item)