Paginators#
Index > NeptuneGraph > Paginators
Auto-generated documentation for NeptuneGraph type annotations stubs module mypy-boto3-neptune-graph.
ListGraphSnapshotsPaginator#
Type annotations and code completion for boto3.client("neptune-graph").get_paginator("list_graph_snapshots")
.
boto3 documentation
# ListGraphSnapshotsPaginator usage example
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListGraphSnapshotsPaginator
def get_list_graph_snapshots_paginator() -> ListGraphSnapshotsPaginator:
return Session().client("neptune-graph").get_paginator("list_graph_snapshots")
# ListGraphSnapshotsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListGraphSnapshotsPaginator
session = Session()
client = Session().client("neptune-graph") # (1)
paginator: ListGraphSnapshotsPaginator = client.get_paginator("list_graph_snapshots") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: NeptuneGraphClient
- paginator: ListGraphSnapshotsPaginator
- item: ListGraphSnapshotsOutputTypeDef
paginate#
Type annotations and code completion for ListGraphSnapshotsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
graphIdentifier: str = ...,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListGraphSnapshotsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListGraphSnapshotsInputListGraphSnapshotsPaginateTypeDef = { # (1)
"graphIdentifier": ...,
}
parent.paginate(**kwargs)
ListGraphsPaginator#
Type annotations and code completion for boto3.client("neptune-graph").get_paginator("list_graphs")
.
boto3 documentation
# ListGraphsPaginator usage example
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListGraphsPaginator
def get_list_graphs_paginator() -> ListGraphsPaginator:
return Session().client("neptune-graph").get_paginator("list_graphs")
# ListGraphsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListGraphsPaginator
session = Session()
client = Session().client("neptune-graph") # (1)
paginator: ListGraphsPaginator = client.get_paginator("list_graphs") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: NeptuneGraphClient
- paginator: ListGraphsPaginator
- item: ListGraphsOutputTypeDef
paginate#
Type annotations and code completion for ListGraphsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListGraphsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListGraphsInputListGraphsPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListImportTasksPaginator#
Type annotations and code completion for boto3.client("neptune-graph").get_paginator("list_import_tasks")
.
boto3 documentation
# ListImportTasksPaginator usage example
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListImportTasksPaginator
def get_list_import_tasks_paginator() -> ListImportTasksPaginator:
return Session().client("neptune-graph").get_paginator("list_import_tasks")
# ListImportTasksPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListImportTasksPaginator
session = Session()
client = Session().client("neptune-graph") # (1)
paginator: ListImportTasksPaginator = client.get_paginator("list_import_tasks") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: NeptuneGraphClient
- paginator: ListImportTasksPaginator
- item: ListImportTasksOutputTypeDef
paginate#
Type annotations and code completion for ListImportTasksPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListImportTasksOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListImportTasksInputListImportTasksPaginateTypeDef = { # (1)
"PaginationConfig": ...,
}
parent.paginate(**kwargs)
ListPrivateGraphEndpointsPaginator#
Type annotations and code completion for boto3.client("neptune-graph").get_paginator("list_private_graph_endpoints")
.
boto3 documentation
# ListPrivateGraphEndpointsPaginator usage example
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListPrivateGraphEndpointsPaginator
def get_list_private_graph_endpoints_paginator() -> ListPrivateGraphEndpointsPaginator:
return Session().client("neptune-graph").get_paginator("list_private_graph_endpoints")
# ListPrivateGraphEndpointsPaginator usage example with type annotations
from boto3.session import Session
from mypy_boto3_neptune_graph.paginator import ListPrivateGraphEndpointsPaginator
session = Session()
client = Session().client("neptune-graph") # (1)
paginator: ListPrivateGraphEndpointsPaginator = client.get_paginator("list_private_graph_endpoints") # (2)
for item in paginator.paginate(...):
print(item) # (3)
- client: NeptuneGraphClient
- paginator: ListPrivateGraphEndpointsPaginator
- item: ListPrivateGraphEndpointsOutputTypeDef
paginate#
Type annotations and code completion for ListPrivateGraphEndpointsPaginator.paginate
method.
# paginate method definition
def paginate(
self,
*,
graphIdentifier: str,
PaginationConfig: PaginatorConfigTypeDef = ..., # (1)
) -> _PageIterator[ListPrivateGraphEndpointsOutputTypeDef]: # (2)
...
# paginate method usage example with argument unpacking
kwargs: ListPrivateGraphEndpointsInputListPrivateGraphEndpointsPaginateTypeDef = { # (1)
"graphIdentifier": ...,
}
parent.paginate(**kwargs)