Skip to content

Waiters#

Index > ACM > Waiters

Auto-generated documentation for ACM type annotations stubs module types-aiobotocore-acm.

CertificateValidatedWaiter#

Type annotations and code completion for session.create_client("acm").get_waiter("certificate_validated"). boto3 documentation

# CertificateValidatedWaiter usage example

from aiobotocore.session import Session

from types_aiobotocore_acm.waiter import CertificateValidatedWaiter

session = get_session()
async with session.create_client("acm") as client:  # (1)
    waiter: CertificateValidatedWaiter = client.get_waiter("certificate_validated")  # (2)
    await waiter.wait()
  1. client: ACMClient
  2. waiter: CertificateValidatedWaiter

wait#

Type annotations and code completion for CertificateValidatedWaiter.wait method.

# wait method definition

await def wait(
    self,
    *,
    CertificateArn: str,
    WaiterConfig: WaiterConfigTypeDef = ...,  # (1)
) -> None:
    ...
  1. See WaiterConfigTypeDef
# wait method usage example with argument unpacking

kwargs: DescribeCertificateRequestCertificateValidatedWaitTypeDef = {  # (1)
    "CertificateArn": ...,
}

parent.wait(**kwargs)
  1. See DescribeCertificateRequestCertificateValidatedWaitTypeDef