Skip to content

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)
  1. client: NeptuneGraphClient
  2. paginator: ListGraphSnapshotsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListGraphSnapshotsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListGraphSnapshotsInputListGraphSnapshotsPaginateTypeDef = {  # (1)
    "graphIdentifier": ...,
}

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

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)
  1. client: NeptuneGraphClient
  2. paginator: ListGraphsPaginator
  3. item: ListGraphsOutputTypeDef

paginate#

Type annotations and code completion for ListGraphsPaginator.paginate method.

# paginate method definition

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

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

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

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)
  1. client: NeptuneGraphClient
  2. paginator: ListImportTasksPaginator
  3. item: ListImportTasksOutputTypeDef

paginate#

Type annotations and code completion for ListImportTasksPaginator.paginate method.

# paginate method definition

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

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

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

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)
  1. client: NeptuneGraphClient
  2. paginator: ListPrivateGraphEndpointsPaginator
  3. 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)
    ...
  1. See PaginatorConfigTypeDef
  2. See ListPrivateGraphEndpointsOutputTypeDef
# paginate method usage example with argument unpacking

kwargs: ListPrivateGraphEndpointsInputListPrivateGraphEndpointsPaginateTypeDef = {  # (1)
    "graphIdentifier": ...,
}

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