Skip to content

Paginators#

Index > S3Control > Paginators

Auto-generated documentation for S3Control type annotations stubs module types-aiobotocore-s3control.

ListAccessPointsForDirectoryBucketsPaginator#

Type annotations and code completion for session.create_client("s3control").get_paginator("list_access_points_for_directory_buckets"). boto3 documentation

# ListAccessPointsForDirectoryBucketsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_s3control.paginator import ListAccessPointsForDirectoryBucketsPaginator

session = get_session()
async with session.create_client("s3control") as client:  # (1)
    paginator: ListAccessPointsForDirectoryBucketsPaginator = client.get_paginator("list_access_points_for_directory_buckets")  # (2)
    async for item in paginator.paginate(...):
        item: ListAccessPointsForDirectoryBucketsResultTypeDef
        print(item)  # (3)
  1. client: S3ControlClient
  2. paginator: ListAccessPointsForDirectoryBucketsPaginator
  3. item: AioPageIterator[ListAccessPointsForDirectoryBucketsResultTypeDef]

paginate#

Type annotations and code completion for ListAccessPointsForDirectoryBucketsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AccountId: str,
    DirectoryBucket: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> aiobotocore.paginate.AioPageIterator[ListAccessPointsForDirectoryBucketsResultTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See AioPageIterator[ListAccessPointsForDirectoryBucketsResultTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAccessPointsForDirectoryBucketsRequestPaginateTypeDef = {  # (1)
    "AccountId": ...,
}

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

ListAccessPointsForObjectLambdaPaginator#

Type annotations and code completion for session.create_client("s3control").get_paginator("list_access_points_for_object_lambda"). boto3 documentation

# ListAccessPointsForObjectLambdaPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_s3control.paginator import ListAccessPointsForObjectLambdaPaginator

session = get_session()
async with session.create_client("s3control") as client:  # (1)
    paginator: ListAccessPointsForObjectLambdaPaginator = client.get_paginator("list_access_points_for_object_lambda")  # (2)
    async for item in paginator.paginate(...):
        item: ListAccessPointsForObjectLambdaResultTypeDef
        print(item)  # (3)
  1. client: S3ControlClient
  2. paginator: ListAccessPointsForObjectLambdaPaginator
  3. item: AioPageIterator[ListAccessPointsForObjectLambdaResultTypeDef]

paginate#

Type annotations and code completion for ListAccessPointsForObjectLambdaPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AccountId: str,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> aiobotocore.paginate.AioPageIterator[ListAccessPointsForObjectLambdaResultTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See AioPageIterator[ListAccessPointsForObjectLambdaResultTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListAccessPointsForObjectLambdaRequestPaginateTypeDef = {  # (1)
    "AccountId": ...,
}

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

ListCallerAccessGrantsPaginator#

Type annotations and code completion for session.create_client("s3control").get_paginator("list_caller_access_grants"). boto3 documentation

# ListCallerAccessGrantsPaginator usage example

from aiobotocore.session import get_session

from types_aiobotocore_s3control.paginator import ListCallerAccessGrantsPaginator

session = get_session()
async with session.create_client("s3control") as client:  # (1)
    paginator: ListCallerAccessGrantsPaginator = client.get_paginator("list_caller_access_grants")  # (2)
    async for item in paginator.paginate(...):
        item: ListCallerAccessGrantsResultTypeDef
        print(item)  # (3)
  1. client: S3ControlClient
  2. paginator: ListCallerAccessGrantsPaginator
  3. item: AioPageIterator[ListCallerAccessGrantsResultTypeDef]

paginate#

Type annotations and code completion for ListCallerAccessGrantsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AccountId: str,
    GrantScope: str = ...,
    AllowedByApplication: bool = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> aiobotocore.paginate.AioPageIterator[ListCallerAccessGrantsResultTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See AioPageIterator[ListCallerAccessGrantsResultTypeDef]
# paginate method usage example with argument unpacking

kwargs: ListCallerAccessGrantsRequestPaginateTypeDef = {  # (1)
    "AccountId": ...,
}

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