Interface CfnAcmeEndpoint.CertificateAuthorityProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnAcmeEndpoint.CertificateAuthorityProperty.Jsii$Proxy
Enclosing class:
CfnAcmeEndpoint

@Stability(Stable) public static interface CfnAcmeEndpoint.CertificateAuthorityProperty extends software.amazon.jsii.JsiiSerializable
The certificate authority configuration for the ACME endpoint.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.certificatemanager.*;
 CertificateAuthorityProperty certificateAuthorityProperty = CertificateAuthorityProperty.builder()
         .publicCertificateAuthority(PublicCertificateAuthorityProperty.builder()
                 .allowedKeyAlgorithms(List.of("allowedKeyAlgorithms"))
                 .build())
         .build();
 

See Also: