Paginators#
Index > BedrockRuntime > Paginators
Auto-generated documentation for BedrockRuntime type annotations stubs module mypy-boto3-bedrock-runtime.
ListAsyncInvokesPaginator#
Type annotations and code completion for boto3.client("bedrock-runtime").get_paginator("list_async_invokes")
.
boto3 documentation
# ListAsyncInvokesPaginator usage example
from boto3.session import Session
from mypy_boto3_bedrock_runtime.paginator import ListAsyncInvokesPaginator
def get_list_async_invokes_paginator() -> ListAsyncInvokesPaginator:
return Session().client("bedrock-runtime").get_paginator("list_async_invokes")
# ListAsyncInvokesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_bedrock_runtime.paginator import ListAsyncInvokesPaginator
session = Session()
client = Session().client("bedrock-runtime") # (1)
paginator: ListAsyncInvokesPaginator = client.get_paginator("list_async_invokes") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: BedrockRuntimeClient
- paginator: ListAsyncInvokesPaginator
- item: ListAsyncInvokesResponseTypeDef
paginate#
Type annotations and code completion for ListAsyncInvokesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
submitTimeAfter: TimestampTypeDef = ...,
submitTimeBefore: TimestampTypeDef = ...,
statusEquals: AsyncInvokeStatusType = ..., # (1)
sortBy: SortAsyncInvocationByType = ..., # (2)
sortOrder: SortOrderType = ..., # (3)
PaginationConfig: PaginatorConfigTypeDef = ..., # (4)
) -> _PageIterator[ListAsyncInvokesResponseTypeDef]: # (5)
...
- See AsyncInvokeStatusType
- See SortAsyncInvocationByType
- See SortOrderType
- See PaginatorConfigTypeDef
- See ListAsyncInvokesResponseTypeDef
# paginate method usage example with argument unpacking
kwargs: ListAsyncInvokesRequestListAsyncInvokesPaginateTypeDef = { # (1)
"submitTimeAfter": ...,
}
parent.paginate(**kwargs)