Paginators#
Index > AugmentedAIRuntime > Paginators
Auto-generated documentation for AugmentedAIRuntime type annotations stubs module mypy-boto3-sagemaker-a2i-runtime.
ListHumanLoopsPaginator#
Type annotations and code completion for boto3.client("sagemaker-a2i-runtime").get_paginator("list_human_loops").
 boto3 documentation
# ListHumanLoopsPaginator usage example
from boto3.session import Session
from mypy_boto3_sagemaker_a2i_runtime.paginator import ListHumanLoopsPaginator
def get_list_human_loops_paginator() -> ListHumanLoopsPaginator:
    return Session().client("sagemaker-a2i-runtime").get_paginator("list_human_loops")
# ListHumanLoopsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_sagemaker_a2i_runtime.paginator import ListHumanLoopsPaginator
session = Session()
client = Session().client("sagemaker-a2i-runtime")  # (1)
paginator: ListHumanLoopsPaginator = client.get_paginator("list_human_loops")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
- client: AugmentedAIRuntimeClient
 - paginator: ListHumanLoopsPaginator
 - item: 
PageIterator[ListHumanLoopsResponseTypeDef] 
paginate#
Type annotations and code completion for ListHumanLoopsPaginator.paginate method.
# paginate method definition
def paginate(
    self,
    *,
    FlowDefinitionArn: str,
    CreationTimeAfter: TimestampTypeDef = ...,
    CreationTimeBefore: TimestampTypeDef = ...,
    SortOrder: SortOrderType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> botocore.paginate.PageIterator[ListHumanLoopsResponseTypeDef]:  # (3)
    ...
- See SortOrderType
 - See PaginatorConfigTypeDef
 - See 
PageIterator[ListHumanLoopsResponseTypeDef] 
# paginate method usage example with argument unpacking
kwargs: ListHumanLoopsRequestPaginateTypeDef = {  # (1)
    "FlowDefinitionArn": ...,
}
parent.paginate(**kwargs)