Skip to content

Paginators#

Index > ResourceExplorer > Paginators

Auto-generated documentation for ResourceExplorer type annotations stubs module mypy-boto3-resource-explorer-2.

ListIndexesPaginator#

Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("list_indexes"). boto3 documentation

# ListIndexesPaginator usage example

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListIndexesPaginator

def get_list_indexes_paginator() -> ListIndexesPaginator:
    return Session().client("resource-explorer-2").get_paginator("list_indexes")
# ListIndexesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListIndexesPaginator

session = Session()

client = Session().client("resource-explorer-2")  # (1)
paginator: ListIndexesPaginator = client.get_paginator("list_indexes")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ResourceExplorerClient
  2. paginator: ListIndexesPaginator
  3. item: ListIndexesOutputTypeDef

paginate#

Type annotations and code completion for ListIndexesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    Regions: Sequence[str] = ...,
    Type: IndexTypeType = ...,  # (1)
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (2)
) -> _PageIterator[ListIndexesOutputTypeDef]:  # (3)
    ...
  1. See IndexTypeType
  2. See PaginatorConfigTypeDef
  3. See ListIndexesOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListIndexesInputListIndexesPaginateTypeDef = {  # (1)
    "Regions": ...,
}

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

ListIndexesForMembersPaginator#

Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("list_indexes_for_members"). boto3 documentation

# ListIndexesForMembersPaginator usage example

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListIndexesForMembersPaginator

def get_list_indexes_for_members_paginator() -> ListIndexesForMembersPaginator:
    return Session().client("resource-explorer-2").get_paginator("list_indexes_for_members")
# ListIndexesForMembersPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListIndexesForMembersPaginator

session = Session()

client = Session().client("resource-explorer-2")  # (1)
paginator: ListIndexesForMembersPaginator = client.get_paginator("list_indexes_for_members")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ResourceExplorerClient
  2. paginator: ListIndexesForMembersPaginator
  3. item: ListIndexesForMembersOutputTypeDef

paginate#

Type annotations and code completion for ListIndexesForMembersPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    AccountIdList: Sequence[str],
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListIndexesForMembersOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListIndexesForMembersOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListIndexesForMembersInputListIndexesForMembersPaginateTypeDef = {  # (1)
    "AccountIdList": ...,
}

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

ListSupportedResourceTypesPaginator#

Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("list_supported_resource_types"). boto3 documentation

# ListSupportedResourceTypesPaginator usage example

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListSupportedResourceTypesPaginator

def get_list_supported_resource_types_paginator() -> ListSupportedResourceTypesPaginator:
    return Session().client("resource-explorer-2").get_paginator("list_supported_resource_types")
# ListSupportedResourceTypesPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListSupportedResourceTypesPaginator

session = Session()

client = Session().client("resource-explorer-2")  # (1)
paginator: ListSupportedResourceTypesPaginator = client.get_paginator("list_supported_resource_types")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ResourceExplorerClient
  2. paginator: ListSupportedResourceTypesPaginator
  3. item: ListSupportedResourceTypesOutputTypeDef

paginate#

Type annotations and code completion for ListSupportedResourceTypesPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListSupportedResourceTypesOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListSupportedResourceTypesOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListSupportedResourceTypesInputListSupportedResourceTypesPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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

ListViewsPaginator#

Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("list_views"). boto3 documentation

# ListViewsPaginator usage example

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListViewsPaginator

def get_list_views_paginator() -> ListViewsPaginator:
    return Session().client("resource-explorer-2").get_paginator("list_views")
# ListViewsPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import ListViewsPaginator

session = Session()

client = Session().client("resource-explorer-2")  # (1)
paginator: ListViewsPaginator = client.get_paginator("list_views")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ResourceExplorerClient
  2. paginator: ListViewsPaginator
  3. item: ListViewsOutputTypeDef

paginate#

Type annotations and code completion for ListViewsPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[ListViewsOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListViewsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListViewsInputListViewsPaginateTypeDef = {  # (1)
    "PaginationConfig": ...,
}

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

SearchPaginator#

Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("search"). boto3 documentation

# SearchPaginator usage example

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import SearchPaginator

def get_search_paginator() -> SearchPaginator:
    return Session().client("resource-explorer-2").get_paginator("search")
# SearchPaginator usage example with type annotations

from boto3.session import Session

from mypy_boto3_resource_explorer_2.paginator import SearchPaginator

session = Session()

client = Session().client("resource-explorer-2")  # (1)
paginator: SearchPaginator = client.get_paginator("search")  # (2)
for item in paginator.paginate(...):
    print(item)  # (3)
  1. client: ResourceExplorerClient
  2. paginator: SearchPaginator
  3. item: SearchOutputTypeDef

paginate#

Type annotations and code completion for SearchPaginator.paginate method.

# paginate method definition

def paginate(
    self,
    *,
    QueryString: str,
    ViewArn: str = ...,
    PaginationConfig: PaginatorConfigTypeDef = ...,  # (1)
) -> _PageIterator[SearchOutputTypeDef]:  # (2)
    ...
  1. See PaginatorConfigTypeDef
  2. See SearchOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: SearchInputSearchPaginateTypeDef = {  # (1)
    "QueryString": ...,
}

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