Skip to content

Waiters#

Index > NeptuneGraph > Waiters

Auto-generated documentation for NeptuneGraph type annotations stubs module mypy-boto3-neptune-graph.

GraphAvailableWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("graph_available"). boto3 documentation

# GraphAvailableWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import GraphAvailableWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: GraphAvailableWaiter = client.get_waiter("graph_available")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: GraphAvailableWaiter

wait#

Type annotations and code completion for GraphAvailableWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    graphIdentifier: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

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

parent.wait(**kwargs)
  1. See GetGraphInputGraphAvailableWaitTypeDef

GraphDeletedWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("graph_deleted"). boto3 documentation

# GraphDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import GraphDeletedWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: GraphDeletedWaiter = client.get_waiter("graph_deleted")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: GraphDeletedWaiter

wait#

Type annotations and code completion for GraphDeletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    graphIdentifier: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

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

parent.wait(**kwargs)
  1. See GetGraphInputGraphDeletedWaitTypeDef

GraphSnapshotAvailableWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("graph_snapshot_available"). boto3 documentation

# GraphSnapshotAvailableWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import GraphSnapshotAvailableWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: GraphSnapshotAvailableWaiter = client.get_waiter("graph_snapshot_available")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: GraphSnapshotAvailableWaiter

wait#

Type annotations and code completion for GraphSnapshotAvailableWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    snapshotIdentifier: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetGraphSnapshotInputGraphSnapshotAvailableWaitTypeDef = {  # (1)
    "snapshotIdentifier": ...,
}

parent.wait(**kwargs)
  1. See GetGraphSnapshotInputGraphSnapshotAvailableWaitTypeDef

GraphSnapshotDeletedWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("graph_snapshot_deleted"). boto3 documentation

# GraphSnapshotDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import GraphSnapshotDeletedWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: GraphSnapshotDeletedWaiter = client.get_waiter("graph_snapshot_deleted")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: GraphSnapshotDeletedWaiter

wait#

Type annotations and code completion for GraphSnapshotDeletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    snapshotIdentifier: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetGraphSnapshotInputGraphSnapshotDeletedWaitTypeDef = {  # (1)
    "snapshotIdentifier": ...,
}

parent.wait(**kwargs)
  1. See GetGraphSnapshotInputGraphSnapshotDeletedWaitTypeDef

ImportTaskCancelledWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("import_task_cancelled"). boto3 documentation

# ImportTaskCancelledWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import ImportTaskCancelledWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: ImportTaskCancelledWaiter = client.get_waiter("import_task_cancelled")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: ImportTaskCancelledWaiter

wait#

Type annotations and code completion for ImportTaskCancelledWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    taskIdentifier: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetImportTaskInputImportTaskCancelledWaitTypeDef = {  # (1)
    "taskIdentifier": ...,
}

parent.wait(**kwargs)
  1. See GetImportTaskInputImportTaskCancelledWaitTypeDef

ImportTaskSuccessfulWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("import_task_successful"). boto3 documentation

# ImportTaskSuccessfulWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import ImportTaskSuccessfulWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: ImportTaskSuccessfulWaiter = client.get_waiter("import_task_successful")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: ImportTaskSuccessfulWaiter

wait#

Type annotations and code completion for ImportTaskSuccessfulWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    taskIdentifier: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: GetImportTaskInputImportTaskSuccessfulWaitTypeDef = {  # (1)
    "taskIdentifier": ...,
}

parent.wait(**kwargs)
  1. See GetImportTaskInputImportTaskSuccessfulWaitTypeDef

PrivateGraphEndpointAvailableWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("private_graph_endpoint_available"). boto3 documentation

# PrivateGraphEndpointAvailableWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import PrivateGraphEndpointAvailableWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: PrivateGraphEndpointAvailableWaiter = client.get_waiter("private_graph_endpoint_available")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: PrivateGraphEndpointAvailableWaiter

wait#

Type annotations and code completion for PrivateGraphEndpointAvailableWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    graphIdentifier: str,
    vpcId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

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

parent.wait(**kwargs)
  1. See GetPrivateGraphEndpointInputPrivateGraphEndpointAvailableWaitTypeDef

PrivateGraphEndpointDeletedWaiter#

Type annotations and code completion for boto3.client("neptune-graph").get_waiter("private_graph_endpoint_deleted"). boto3 documentation

# PrivateGraphEndpointDeletedWaiter usage example

from boto3.session import Session

from mypy_boto3_neptune_graph.waiter import PrivateGraphEndpointDeletedWaiter


session = Session()

client = session.client("neptune-graph")  # (1)
waiter: PrivateGraphEndpointDeletedWaiter = client.get_waiter("private_graph_endpoint_deleted")  # (2)
await waiter.wait()
  1. client: NeptuneGraphClient
  2. waiter: PrivateGraphEndpointDeletedWaiter

wait#

Type annotations and code completion for PrivateGraphEndpointDeletedWaiter.wait method.

# wait method definition

def wait(
    self,
    *,
    graphIdentifier: str,
    vpcId: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

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

parent.wait(**kwargs)
  1. See GetPrivateGraphEndpointInputPrivateGraphEndpointDeletedWaitTypeDef