Skip to content

Paginators#

Index > LexModelsV2 > Paginators

Auto-generated documentation for LexModelsV2 type annotations stubs module mypy-boto3-lexv2-models.

DescribeBotAnalyzerRecommendationPaginator#

Type annotations and code completion for boto3.client("lexv2-models").get_paginator("describe_bot_analyzer_recommendation"). boto3 documentation

# DescribeBotAnalyzerRecommendationPaginator usage example

from boto3.session import Session

from mypy_boto3_lexv2_models.paginator import DescribeBotAnalyzerRecommendationPaginator

def get_describe_bot_analyzer_recommendation_paginator() -> DescribeBotAnalyzerRecommendationPaginator:
    return Session().client("lexv2-models").get_paginator("describe_bot_analyzer_recommendation")
# DescribeBotAnalyzerRecommendationPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lexv2_models.paginator import DescribeBotAnalyzerRecommendationPaginator

session = Session()

client = Session().client("lexv2-models")  # (1)
paginator: DescribeBotAnalyzerRecommendationPaginator = client.get_paginator("describe_bot_analyzer_recommendation")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LexModelsV2Client
  2. paginator: DescribeBotAnalyzerRecommendationPaginator
  3. item: PageIterator[DescribeBotAnalyzerRecommendationResponseTypeDef]

paginate#

Type annotations and code completion for DescribeBotAnalyzerRecommendationPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    botId: str,
    botAnalyzerRequestId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[DescribeBotAnalyzerRecommendationResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[DescribeBotAnalyzerRecommendationResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: DescribeBotAnalyzerRecommendationRequestPaginateTypeDef = {  # (1)
    "botId": ...,
    "botAnalyzerRequestId": ...,
}

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

ListBotAnalyzerHistoryPaginator#

Type annotations and code completion for boto3.client("lexv2-models").get_paginator("list_bot_analyzer_history"). boto3 documentation

# ListBotAnalyzerHistoryPaginator usage example

from boto3.session import Session

from mypy_boto3_lexv2_models.paginator import ListBotAnalyzerHistoryPaginator

def get_list_bot_analyzer_history_paginator() -> ListBotAnalyzerHistoryPaginator:
    return Session().client("lexv2-models").get_paginator("list_bot_analyzer_history")
# ListBotAnalyzerHistoryPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_lexv2_models.paginator import ListBotAnalyzerHistoryPaginator

session = Session()

client = Session().client("lexv2-models")  # (1)
paginator: ListBotAnalyzerHistoryPaginator = client.get_paginator("list_bot_analyzer_history")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: LexModelsV2Client
  2. paginator: ListBotAnalyzerHistoryPaginator
  3. item: PageIterator[ListBotAnalyzerHistoryResponseTypeDef]

paginate#

Type annotations and code completion for ListBotAnalyzerHistoryPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    botId: str,
    localeId: str = ...,
    botVersion: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> botocore.paginate.PageIterator[ListBotAnalyzerHistoryResponseTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See PageIterator[ListBotAnalyzerHistoryResponseTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListBotAnalyzerHistoryRequestPaginateTypeDef = {  # (1)
    "botId": ...,
}

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