Waiters#
Auto-generated documentation for ACM type annotations stubs module mypy-boto3-acm.
CertificateValidatedWaiter#
Type annotations and code completion for boto3.client("acm").get_waiter("certificate_validated")
.
boto3 documentation
# CertificateValidatedWaiter usage example
from boto3.session import Session
from mypy_boto3_acm.waiter import CertificateValidatedWaiter
session = Session()
client = session.client("acm") # (1)
waiter: CertificateValidatedWaiter = client.get_waiter("certificate_validated") # (2)
await waiter.wait()
- client: ACMClient
- waiter: CertificateValidatedWaiter
wait#
Type annotations and code completion for CertificateValidatedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
CertificateArn: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: DescribeCertificateRequestCertificateValidatedWaitTypeDef = { # (1)
"CertificateArn": ...,
}
parent.wait(**kwargs)