Paginators#
Index > ResourceExplorer > Paginators
Auto-generated documentation for ResourceExplorer type annotations stubs module mypy-boto3-resource-explorer-2.
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)
- client: ResourceExplorerClient
- paginator: ListIndexesForMembersPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListIndexesForMembersInputListIndexesForMembersPaginateTypeDef = { # (1)
"AccountIdList": ...,
}
parent.paginate(**kwargs)
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)
- client: ResourceExplorerClient
- paginator: ListIndexesPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: ListIndexesInputListIndexesPaginateTypeDef = { # (1)
"Regions": ...,
}
parent.paginate(**kwargs)
ListManagedViewsPaginator#
Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("list_managed_views")
.
boto3 documentation
# ListManagedViewsPaginator usage example
from boto3.session import Session
from mypy_boto3_resource_explorer_2.paginator import ListManagedViewsPaginator
def get_list_managed_views_paginator() -> ListManagedViewsPaginator:
return Session().client("resource-explorer-2").get_paginator("list_managed_views")
# ListManagedViewsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_resource_explorer_2.paginator import ListManagedViewsPaginator
session = Session()
client = Session().client("resource-explorer-2") # (1)
paginator: ListManagedViewsPaginator = client.get_paginator("list_managed_views") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ResourceExplorerClient
- paginator: ListManagedViewsPaginator
- item: ListManagedViewsOutputTypeDef
paginate#
Type annotations and code completion for ListManagedViewsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
ServicePrincipal: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListManagedViewsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListManagedViewsInputListManagedViewsPaginateTypeDef = { # (1)
"ServicePrincipal": ...,
}
parent.paginate(**kwargs)
ListResourcesPaginator#
Type annotations and code completion for boto3.client("resource-explorer-2").get_paginator("list_resources")
.
boto3 documentation
# ListResourcesPaginator usage example
from boto3.session import Session
from mypy_boto3_resource_explorer_2.paginator import ListResourcesPaginator
def get_list_resources_paginator() -> ListResourcesPaginator:
return Session().client("resource-explorer-2").get_paginator("list_resources")
# ListResourcesPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_resource_explorer_2.paginator import ListResourcesPaginator
session = Session()
client = Session().client("resource-explorer-2") # (1)
paginator: ListResourcesPaginator = client.get_paginator("list_resources") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: ResourceExplorerClient
- paginator: ListResourcesPaginator
- item: ListResourcesOutputTypeDef
paginate#
Type annotations and code completion for ListResourcesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
Filters: SearchFilterTypeDef = ..., # (1)
ViewArn: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (2)
) -> _PageIterator[ListResourcesOutputTypeDef]: # (3)
...
# paginate method usage example with argument unpacking
kwargs: ListResourcesInputListResourcesPaginateTypeDef = { # (1)
"Filters": ...,
}
parent.paginate(**kwargs)
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)
- client: ResourceExplorerClient
- paginator: ListSupportedResourceTypesPaginator
- item: ListSupportedResourceTypesOutputTypeDef
paginate#
Type annotations and code completion for ListSupportedResourceTypesPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListSupportedResourceTypesOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListSupportedResourceTypesInputListSupportedResourceTypesPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
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)
- client: ResourceExplorerClient
- paginator: ListViewsPaginator
- item: ListViewsOutputTypeDef
paginate#
Type annotations and code completion for ListViewsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListViewsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListViewsInputListViewsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
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)
- client: ResourceExplorerClient
- paginator: SearchPaginator
- 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)
...
# paginate method usage example with argument unpacking
kwargs: SearchInputSearchPaginateTypeDef = { # (1)
"QueryString": ...,
}
parent.paginate(**kwargs)