Paginators#
Index > SageMakerFeatureStoreRuntime > Paginators
Auto-generated documentation for SageMakerFeatureStoreRuntime type annotations stubs module mypy-boto3-sagemaker-featurestore-runtime.
ListRecordsPaginator#
Type annotations and code completion for boto3.client("sagemaker-featurestore-runtime").get_paginator("list_records").
boto3 documentation
# ListRecordsPaginator usage example
from boto3.session import Session
from mypy_boto3_sagemaker_featurestore_runtime.paginator import ListRecordsPaginator
def get_list_records_paginator() -> ListRecordsPaginator:
return Session().client("sagemaker-featurestore-runtime").get_paginator("list_records")
# ListRecordsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_sagemaker_featurestore_runtime.paginator import ListRecordsPaginator
session = Session()
client = Session().client("sagemaker-featurestore-runtime") # (1)
paginator: ListRecordsPaginator = client.get_paginator("list_records") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: SageMakerFeatureStoreRuntimeClient
- paginator: ListRecordsPaginator
- item:
PageIterator[ListRecordsResponseTypeDef]
paginate#
Type annotations and code completion for ListRecordsPaginator.paginate method.
# paginate method definition
def paginate(
self,
*,
FeatureGroupName: str,
IncludeSoftDeletedRecords: bool = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> botocore.paginate.PageIterator[ListRecordsResponseTypeDef]: # (2)
...
- See PaginatorConfigTypeDef
- See
PageIterator[ListRecordsResponseTypeDef]
# paginate method usage example with argument unpacking
kwargs: ListRecordsRequestPaginateTypeDef = { # (1)
"FeatureGroupName": ...,
}
parent.paginate(**kwargs)