Skip to content

Paginators#

Index > S3Files > Paginators

Auto-generated documentation for S3Files type annotations stubs module types-boto3-s3files.

ListAccessPointsPaginator#

Type annotations and code completion for boto3.client("s3files").get_paginator("list_access_points"). boto3 documentation

# ListAccessPointsPaginator usage example

from boto3.session import Session

from types_boto3_s3files.paginator import ListAccessPointsPaginator

def get_list_access_points_paginator() -> ListAccessPointsPaginator:
    return Session().client("s3files").get_paginator("list_access_points")
# ListAccessPointsPaginator usage example with type annotations

from boto3.session import Session

from types_boto3_s3files.paginator import ListAccessPointsPaginator

session = Session()

client = Session().client("s3files")  # (1)
paginator: ListAccessPointsPaginator = client.get_paginator("list_access_points")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: S3FilesClient
  2. paginator: ListAccessPointsPaginator
  3. item: PageIterator[ListAccessPointsResponseTypeDef]

paginate#

Type annotations and code completion for ListAccessPointsPaginator.paginate method.

# paginate method definition

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

kwargs: ListAccessPointsRequestPaginateTypeDef = {  # (1)
    "fileSystemId": ...,
}

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

ListFileSystemsPaginator#

Type annotations and code completion for boto3.client("s3files").get_paginator("list_file_systems"). boto3 documentation

# ListFileSystemsPaginator usage example

from boto3.session import Session

from types_boto3_s3files.paginator import ListFileSystemsPaginator

def get_list_file_systems_paginator() -> ListFileSystemsPaginator:
    return Session().client("s3files").get_paginator("list_file_systems")
# ListFileSystemsPaginator usage example with type annotations

from boto3.session import Session

from types_boto3_s3files.paginator import ListFileSystemsPaginator

session = Session()

client = Session().client("s3files")  # (1)
paginator: ListFileSystemsPaginator = client.get_paginator("list_file_systems")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: S3FilesClient
  2. paginator: ListFileSystemsPaginator
  3. item: PageIterator[ListFileSystemsResponseTypeDef]

paginate#

Type annotations and code completion for ListFileSystemsPaginator.paginate method.

# paginate method definition

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

kwargs: ListFileSystemsRequestPaginateTypeDef = {  # (1)
    "bucket": ...,
}

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

ListMountTargetsPaginator#

Type annotations and code completion for boto3.client("s3files").get_paginator("list_mount_targets"). boto3 documentation

# ListMountTargetsPaginator usage example

from boto3.session import Session

from types_boto3_s3files.paginator import ListMountTargetsPaginator

def get_list_mount_targets_paginator() -> ListMountTargetsPaginator:
    return Session().client("s3files").get_paginator("list_mount_targets")
# ListMountTargetsPaginator usage example with type annotations

from boto3.session import Session

from types_boto3_s3files.paginator import ListMountTargetsPaginator

session = Session()

client = Session().client("s3files")  # (1)
paginator: ListMountTargetsPaginator = client.get_paginator("list_mount_targets")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: S3FilesClient
  2. paginator: ListMountTargetsPaginator
  3. item: PageIterator[ListMountTargetsResponseTypeDef]

paginate#

Type annotations and code completion for ListMountTargetsPaginator.paginate method.

# paginate method definition

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

kwargs: ListMountTargetsRequestPaginateTypeDef = {  # (1)
    "fileSystemId": ...,
}

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

ListTagsForResourcePaginator#

Type annotations and code completion for boto3.client("s3files").get_paginator("list_tags_for_resource"). boto3 documentation

# ListTagsForResourcePaginator usage example

from boto3.session import Session

from types_boto3_s3files.paginator import ListTagsForResourcePaginator

def get_list_tags_for_resource_paginator() -> ListTagsForResourcePaginator:
    return Session().client("s3files").get_paginator("list_tags_for_resource")
# ListTagsForResourcePaginator usage example with type annotations

from boto3.session import Session

from types_boto3_s3files.paginator import ListTagsForResourcePaginator

session = Session()

client = Session().client("s3files")  # (1)
paginator: ListTagsForResourcePaginator = client.get_paginator("list_tags_for_resource")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: S3FilesClient
  2. paginator: ListTagsForResourcePaginator
  3. item: PageIterator[ListTagsForResourceResponseTypeDef]

paginate#

Type annotations and code completion for ListTagsForResourcePaginator.paginate method.

# paginate method definition

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

kwargs: ListTagsForResourceRequestPaginateTypeDef = {  # (1)
    "resourceId": ...,
}

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