Skip to content

Waiters#

Index > SimpleDBv2 > Waiters

Auto-generated documentation for SimpleDBv2 type annotations stubs module mypy-boto3-simpledbv2.

ExportSucceededWaiter#

Type annotations and code completion for boto3.client("simpledbv2").get_waiter("export_succeeded"). boto3 documentation

# ExportSucceededWaiter usage example

from boto3.session import Session

from mypy_boto3_simpledbv2.waiter import ExportSucceededWaiter


session = Session()

client = session.client("simpledbv2")  # (1)
waiter: ExportSucceededWaiter = client.get_waiter("export_succeeded")  # (2)
await waiter.wait(...)
  1. client: SimpleDBv2Client
  2. waiter: ExportSucceededWaiter

wait#

Type annotations and code completion for ExportSucceededWaiter.wait method.

# wait method definition

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

kwargs: GetExportRequestWaitTypeDef = {  # (1)
    "exportArn": ...,
}

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