Skip to content

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetBotAliasesPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotAliasesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetBotAliasesRequestGetBotAliasesPaginateTypeDef = {  # (1)
    "botName": ...,
}

parent.paginate(**kwargs)
  1. See GetBotAliasesRequestGetBotAliasesPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetBotChannelAssociationsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotChannelAssociationsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetBotChannelAssociationsRequestGetBotChannelAssociationsPaginateTypeDef = {  # (1)
    "botName": ...,
    "botAlias": ...,
}

parent.paginate(**kwargs)
  1. See GetBotChannelAssociationsRequestGetBotChannelAssociationsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetBotVersionsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotVersionsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetBotVersionsRequestGetBotVersionsPaginateTypeDef = {  # (1)
    "name": ...,
}

parent.paginate(**kwargs)
  1. See GetBotVersionsRequestGetBotVersionsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetBotsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetBotsRequestGetBotsPaginateTypeDef = {  # (1)
    "nameContains": ...,
}

parent.paginate(**kwargs)
  1. See GetBotsRequestGetBotsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetBuiltinIntentsPaginator
  3. 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)
    ...
  1. See LocaleType
  2. See PaginatorConfigTypeDef
  3. See GetBuiltinIntentsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetBuiltinIntentsRequestGetBuiltinIntentsPaginateTypeDef = {  # (1)
    "locale": ...,
}

parent.paginate(**kwargs)
  1. See GetBuiltinIntentsRequestGetBuiltinIntentsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetBuiltinSlotTypesPaginator
  3. 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)
    ...
  1. See LocaleType
  2. See PaginatorConfigTypeDef
  3. See GetBuiltinSlotTypesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetBuiltinSlotTypesRequestGetBuiltinSlotTypesPaginateTypeDef = {  # (1)
    "locale": ...,
}

parent.paginate(**kwargs)
  1. See GetBuiltinSlotTypesRequestGetBuiltinSlotTypesPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetIntentVersionsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetIntentVersionsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetIntentVersionsRequestGetIntentVersionsPaginateTypeDef = {  # (1)
    "name": ...,
}

parent.paginate(**kwargs)
  1. See GetIntentVersionsRequestGetIntentVersionsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetIntentsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetIntentsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetIntentsRequestGetIntentsPaginateTypeDef = {  # (1)
    "nameContains": ...,
}

parent.paginate(**kwargs)
  1. See GetIntentsRequestGetIntentsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetSlotTypeVersionsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetSlotTypeVersionsResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetSlotTypeVersionsRequestGetSlotTypeVersionsPaginateTypeDef = {  # (1)
    "name": ...,
}

parent.paginate(**kwargs)
  1. See GetSlotTypeVersionsRequestGetSlotTypeVersionsPaginateTypeDef

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)
  1. client: LexModelBuildingServiceClient
  2. paginator: GetSlotTypesPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetSlotTypesResponseTypeDef
# paginate method usage example with argument unpacking

kwargs: GetSlotTypesRequestGetSlotTypesPaginateTypeDef = {  # (1)
    "nameContains": ...,
}

parent.paginate(**kwargs)
  1. See GetSlotTypesRequestGetSlotTypesPaginateTypeDef