Paginators#
Index > LexModelBuildingService > Paginators
Auto-generated documentation for LexModelBuildingService type annotations stubs module mypy-boto3-lex-models.
GetBotAliasesPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_bot_aliases")
.
boto3 documentation
# GetBotAliasesPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotAliasesPaginator
def get_get_bot_aliases_paginator() -> GetBotAliasesPaginator:
return Session().client("lex-models").get_paginator("get_bot_aliases")
# GetBotAliasesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotAliasesPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetBotAliasesPaginator = client.get_paginator("get_bot_aliases") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBotAliasesPaginator
- item: GetBotAliasesResponseTypeDef
paginate#
Type annotations and code completion for GetBotAliasesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
botName: str,
nameContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetBotAliasesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetBotAliasesRequestGetBotAliasesPaginateTypeDef = { # (1)
"botName": ...,
}
parent.paginate(**kwargs)
GetBotChannelAssociationsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_bot_channel_associations")
.
boto3 documentation
# GetBotChannelAssociationsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotChannelAssociationsPaginator
def get_get_bot_channel_associations_paginator() -> GetBotChannelAssociationsPaginator:
return Session().client("lex-models").get_paginator("get_bot_channel_associations")
# GetBotChannelAssociationsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotChannelAssociationsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetBotChannelAssociationsPaginator = client.get_paginator("get_bot_channel_associations") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBotChannelAssociationsPaginator
- item: GetBotChannelAssociationsResponseTypeDef
paginate#
Type annotations and code completion for GetBotChannelAssociationsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
botName: str,
botAlias: str,
nameContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetBotChannelAssociationsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetBotChannelAssociationsRequestGetBotChannelAssociationsPaginateTypeDef = { # (1)
"botName": ...,
"botAlias": ...,
}
parent.paginate(**kwargs)
GetBotVersionsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_bot_versions")
.
boto3 documentation
# GetBotVersionsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotVersionsPaginator
def get_get_bot_versions_paginator() -> GetBotVersionsPaginator:
return Session().client("lex-models").get_paginator("get_bot_versions")
# GetBotVersionsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotVersionsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetBotVersionsPaginator = client.get_paginator("get_bot_versions") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBotVersionsPaginator
- item: GetBotVersionsResponseTypeDef
paginate#
Type annotations and code completion for GetBotVersionsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
name: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetBotVersionsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetBotVersionsRequestGetBotVersionsPaginateTypeDef = { # (1)
"name": ...,
}
parent.paginate(**kwargs)
GetBotsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_bots")
.
boto3 documentation
# GetBotsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotsPaginator
def get_get_bots_paginator() -> GetBotsPaginator:
return Session().client("lex-models").get_paginator("get_bots")
# GetBotsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBotsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetBotsPaginator = client.get_paginator("get_bots") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBotsPaginator
- item: GetBotsResponseTypeDef
paginate#
Type annotations and code completion for GetBotsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
nameContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetBotsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetBotsRequestGetBotsPaginateTypeDef = { # (1)
"nameContains": ...,
}
parent.paginate(**kwargs)
GetBuiltinIntentsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_builtin_intents")
.
boto3 documentation
# GetBuiltinIntentsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBuiltinIntentsPaginator
def get_get_builtin_intents_paginator() -> GetBuiltinIntentsPaginator:
return Session().client("lex-models").get_paginator("get_builtin_intents")
# GetBuiltinIntentsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBuiltinIntentsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetBuiltinIntentsPaginator = client.get_paginator("get_builtin_intents") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBuiltinIntentsPaginator
- item: GetBuiltinIntentsResponseTypeDef
paginate#
Type annotations and code completion for GetBuiltinIntentsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
locale: LocaleType = ..., # (1)
signatureContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[GetBuiltinIntentsResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: GetBuiltinIntentsRequestGetBuiltinIntentsPaginateTypeDef = { # (1)
"locale": ...,
}
parent.paginate(**kwargs)
GetBuiltinSlotTypesPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_builtin_slot_types")
.
boto3 documentation
# GetBuiltinSlotTypesPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBuiltinSlotTypesPaginator
def get_get_builtin_slot_types_paginator() -> GetBuiltinSlotTypesPaginator:
return Session().client("lex-models").get_paginator("get_builtin_slot_types")
# GetBuiltinSlotTypesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetBuiltinSlotTypesPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetBuiltinSlotTypesPaginator = client.get_paginator("get_builtin_slot_types") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetBuiltinSlotTypesPaginator
- item: GetBuiltinSlotTypesResponseTypeDef
paginate#
Type annotations and code completion for GetBuiltinSlotTypesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
locale: LocaleType = ..., # (1)
signatureContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[GetBuiltinSlotTypesResponseTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: GetBuiltinSlotTypesRequestGetBuiltinSlotTypesPaginateTypeDef = { # (1)
"locale": ...,
}
parent.paginate(**kwargs)
GetIntentVersionsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_intent_versions")
.
boto3 documentation
# GetIntentVersionsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetIntentVersionsPaginator
def get_get_intent_versions_paginator() -> GetIntentVersionsPaginator:
return Session().client("lex-models").get_paginator("get_intent_versions")
# GetIntentVersionsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetIntentVersionsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetIntentVersionsPaginator = client.get_paginator("get_intent_versions") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetIntentVersionsPaginator
- item: GetIntentVersionsResponseTypeDef
paginate#
Type annotations and code completion for GetIntentVersionsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
name: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetIntentVersionsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetIntentVersionsRequestGetIntentVersionsPaginateTypeDef = { # (1)
"name": ...,
}
parent.paginate(**kwargs)
GetIntentsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_intents")
.
boto3 documentation
# GetIntentsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetIntentsPaginator
def get_get_intents_paginator() -> GetIntentsPaginator:
return Session().client("lex-models").get_paginator("get_intents")
# GetIntentsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetIntentsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetIntentsPaginator = client.get_paginator("get_intents") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetIntentsPaginator
- item: GetIntentsResponseTypeDef
paginate#
Type annotations and code completion for GetIntentsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
nameContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetIntentsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetIntentsRequestGetIntentsPaginateTypeDef = { # (1)
"nameContains": ...,
}
parent.paginate(**kwargs)
GetSlotTypeVersionsPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_slot_type_versions")
.
boto3 documentation
# GetSlotTypeVersionsPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetSlotTypeVersionsPaginator
def get_get_slot_type_versions_paginator() -> GetSlotTypeVersionsPaginator:
return Session().client("lex-models").get_paginator("get_slot_type_versions")
# GetSlotTypeVersionsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetSlotTypeVersionsPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetSlotTypeVersionsPaginator = client.get_paginator("get_slot_type_versions") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetSlotTypeVersionsPaginator
- item: GetSlotTypeVersionsResponseTypeDef
paginate#
Type annotations and code completion for GetSlotTypeVersionsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
name: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetSlotTypeVersionsResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetSlotTypeVersionsRequestGetSlotTypeVersionsPaginateTypeDef = { # (1)
"name": ...,
}
parent.paginate(**kwargs)
GetSlotTypesPaginator#
Type annotations and code completion for boto3.client("lex-models").get_paginator("get_slot_types")
.
boto3 documentation
# GetSlotTypesPaginator usage example
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetSlotTypesPaginator
def get_get_slot_types_paginator() -> GetSlotTypesPaginator:
return Session().client("lex-models").get_paginator("get_slot_types")
# GetSlotTypesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_lex_models.paginator import GetSlotTypesPaginator
session = Session()
client = Session().client("lex-models") # (1)
paginator: GetSlotTypesPaginator = client.get_paginator("get_slot_types") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: LexModelBuildingServiceClient
- paginator: GetSlotTypesPaginator
- item: GetSlotTypesResponseTypeDef
paginate#
Type annotations and code completion for GetSlotTypesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
nameContains: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[GetSlotTypesResponseTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: GetSlotTypesRequestGetSlotTypesPaginateTypeDef = { # (1)
"nameContains": ...,
}
parent.paginate(**kwargs)