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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    botName: str,
    nameContains: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetBotAliasesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotAliasesResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    botName: str,
    botAlias: str,
    nameContains: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetBotChannelAssociationsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotChannelAssociationsResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    name: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetBotVersionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotVersionsResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    nameContains: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetBotsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetBotsResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

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
Usage example with kwargs
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

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")
Usage example
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.

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
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    name: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetIntentVersionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetIntentVersionsResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    nameContains: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetIntentsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetIntentsResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    name: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetSlotTypeVersionsResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetSlotTypeVersionsResponseTypeDef
Usage example with kwargs
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

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")
Usage example
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.

Method definition
def paginate(
    self,
    *,
    nameContains: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[GetSlotTypesResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See GetSlotTypesResponseTypeDef
Usage example with kwargs
kwargs: GetSlotTypesRequestGetSlotTypesPaginateTypeDef = {  # (1)
    "nameContains": ...,
}

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