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(...)
- client: SimpleDBv2Client
- waiter: ExportSucceededWaiter
wait#
Type annotations and code completion for ExportSucceededWaiter.wait method.
# wait method definition
def wait(
self,
*,
exportArn: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetExportRequestWaitTypeDef = { # (1)
"exportArn": ...,
}
parent.wait(**kwargs)