Waiters#
Auto-generated documentation for SSM type annotations stubs module mypy-boto3-ssm.
CommandExecutedWaiter#
Type annotations and code completion for boto3.client("ssm").get_waiter("command_executed")
.
boto3 documentation
# CommandExecutedWaiter usage example
from boto3.session import Session
from mypy_boto3_ssm.waiter import CommandExecutedWaiter
session = Session()
client = session.client("ssm") # (1)
waiter: CommandExecutedWaiter = client.get_waiter("command_executed") # (2)
await waiter.wait()
- client: SSMClient
- waiter: CommandExecutedWaiter
wait#
Type annotations and code completion for CommandExecutedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
CommandId: str,
InstanceId: str,
PluginName: str = ...,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetCommandInvocationRequestCommandExecutedWaitTypeDef = { # (1)
"CommandId": ...,
"InstanceId": ...,
}
parent.wait(**kwargs)