Waiters#
Index > AuroraDSQL > Waiters
Auto-generated documentation for AuroraDSQL type annotations stubs module mypy-boto3-dsql.
ClusterActiveWaiter#
Type annotations and code completion for boto3.client("dsql").get_waiter("cluster_active").
boto3 documentation
# ClusterActiveWaiter usage example
from boto3.session import Session
from mypy_boto3_dsql.waiter import ClusterActiveWaiter
session = Session()
client = session.client("dsql") # (1)
waiter: ClusterActiveWaiter = client.get_waiter("cluster_active") # (2)
await waiter.wait(...)
- client: AuroraDSQLClient
- waiter: ClusterActiveWaiter
wait#
Type annotations and code completion for ClusterActiveWaiter.wait method.
# wait method definition
def wait(
self,
*,
identifier: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetClusterInputWaitTypeDef = { # (1)
"identifier": ...,
}
parent.wait(**kwargs)
ClusterNotExistsWaiter#
Type annotations and code completion for boto3.client("dsql").get_waiter("cluster_not_exists").
boto3 documentation
# ClusterNotExistsWaiter usage example
from boto3.session import Session
from mypy_boto3_dsql.waiter import ClusterNotExistsWaiter
session = Session()
client = session.client("dsql") # (1)
waiter: ClusterNotExistsWaiter = client.get_waiter("cluster_not_exists") # (2)
await waiter.wait(...)
- client: AuroraDSQLClient
- waiter: ClusterNotExistsWaiter
wait#
Type annotations and code completion for ClusterNotExistsWaiter.wait method.
# wait method definition
def wait(
self,
*,
identifier: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetClusterInputWaitExtraTypeDef = { # (1)
"identifier": ...,
}
parent.wait(**kwargs)
StreamActiveWaiter#
Type annotations and code completion for boto3.client("dsql").get_waiter("stream_active").
boto3 documentation
# StreamActiveWaiter usage example
from boto3.session import Session
from mypy_boto3_dsql.waiter import StreamActiveWaiter
session = Session()
client = session.client("dsql") # (1)
waiter: StreamActiveWaiter = client.get_waiter("stream_active") # (2)
await waiter.wait(...)
- client: AuroraDSQLClient
- waiter: StreamActiveWaiter
wait#
Type annotations and code completion for StreamActiveWaiter.wait method.
# wait method definition
def wait(
self,
*,
clusterIdentifier: str,
streamIdentifier: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetStreamInputWaitTypeDef = { # (1)
"clusterIdentifier": ...,
"streamIdentifier": ...,
}
parent.wait(**kwargs)
StreamNotExistsWaiter#
Type annotations and code completion for boto3.client("dsql").get_waiter("stream_not_exists").
boto3 documentation
# StreamNotExistsWaiter usage example
from boto3.session import Session
from mypy_boto3_dsql.waiter import StreamNotExistsWaiter
session = Session()
client = session.client("dsql") # (1)
waiter: StreamNotExistsWaiter = client.get_waiter("stream_not_exists") # (2)
await waiter.wait(...)
- client: AuroraDSQLClient
- waiter: StreamNotExistsWaiter
wait#
Type annotations and code completion for StreamNotExistsWaiter.wait method.
# wait method definition
def wait(
self,
*,
clusterIdentifier: str,
streamIdentifier: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetStreamInputWaitExtraTypeDef = { # (1)
"clusterIdentifier": ...,
"streamIdentifier": ...,
}
parent.wait(**kwargs)