Waiters#
Index > OpsWorksCM > Waiters
Auto-generated documentation for OpsWorksCM type annotations stubs module mypy-boto3-opsworkscm.
NodeAssociatedWaiter#
Type annotations and code completion for boto3.client("opsworkscm").get_waiter("node_associated")
.
boto3 documentation
# NodeAssociatedWaiter usage example
from boto3.session import Session
from mypy_boto3_opsworkscm.waiter import NodeAssociatedWaiter
session = Session()
client = session.client("opsworkscm") # (1)
waiter: NodeAssociatedWaiter = client.get_waiter("node_associated") # (2)
await waiter.wait()
- client: OpsWorksCMClient
- waiter: NodeAssociatedWaiter
wait#
Type annotations and code completion for NodeAssociatedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
NodeAssociationStatusToken: str,
ServerName: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: DescribeNodeAssociationStatusRequestNodeAssociatedWaitTypeDef = { # (1)
"NodeAssociationStatusToken": ...,
"ServerName": ...,
}
parent.wait(**kwargs)