Waiters#
Auto-generated documentation for ACMPCA type annotations stubs module mypy-boto3-acm-pca.
AuditReportCreatedWaiter#
Type annotations and code completion for boto3.client("acm-pca").get_waiter("audit_report_created")
.
boto3 documentation
# AuditReportCreatedWaiter usage example
from boto3.session import Session
from mypy_boto3_acm_pca.waiter import AuditReportCreatedWaiter
session = Session()
client = session.client("acm-pca") # (1)
waiter: AuditReportCreatedWaiter = client.get_waiter("audit_report_created") # (2)
await waiter.wait()
- client: ACMPCAClient
- waiter: AuditReportCreatedWaiter
wait#
Type annotations and code completion for AuditReportCreatedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
CertificateAuthorityArn: str,
AuditReportId: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: DescribeCertificateAuthorityAuditReportRequestAuditReportCreatedWaitTypeDef = { # (1)
"CertificateAuthorityArn": ...,
"AuditReportId": ...,
}
parent.wait(**kwargs)
CertificateAuthorityCSRCreatedWaiter#
Type annotations and code completion for boto3.client("acm-pca").get_waiter("certificate_authority_csr_created")
.
boto3 documentation
# CertificateAuthorityCSRCreatedWaiter usage example
from boto3.session import Session
from mypy_boto3_acm_pca.waiter import CertificateAuthorityCSRCreatedWaiter
session = Session()
client = session.client("acm-pca") # (1)
waiter: CertificateAuthorityCSRCreatedWaiter = client.get_waiter("certificate_authority_csr_created") # (2)
await waiter.wait()
- client: ACMPCAClient
- waiter: CertificateAuthorityCSRCreatedWaiter
wait#
Type annotations and code completion for CertificateAuthorityCSRCreatedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
CertificateAuthorityArn: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetCertificateAuthorityCsrRequestCertificateAuthorityCSRCreatedWaitTypeDef = { # (1)
"CertificateAuthorityArn": ...,
}
parent.wait(**kwargs)
CertificateIssuedWaiter#
Type annotations and code completion for boto3.client("acm-pca").get_waiter("certificate_issued")
.
boto3 documentation
# CertificateIssuedWaiter usage example
from boto3.session import Session
from mypy_boto3_acm_pca.waiter import CertificateIssuedWaiter
session = Session()
client = session.client("acm-pca") # (1)
waiter: CertificateIssuedWaiter = client.get_waiter("certificate_issued") # (2)
await waiter.wait()
- client: ACMPCAClient
- waiter: CertificateIssuedWaiter
wait#
Type annotations and code completion for CertificateIssuedWaiter.wait
method.
# wait method definition
def wait(
self,
*,
CertificateAuthorityArn: str,
CertificateArn: str,
WaiterConfig: WaiterConfigTypeDef = ..., # (1)
) -> None:
...
# wait method usage example with argument unpacking
kwargs: GetCertificateRequestCertificateIssuedWaitTypeDef = { # (1)
"CertificateAuthorityArn": ...,
"CertificateArn": ...,
}
parent.wait(**kwargs)