Interface CfnAcmeEndpointPropsMixin.CertificateAuthorityProperty

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

@Stability(Stable) public static interface CfnAcmeEndpointPropsMixin.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.cfnpropertymixins.services.certificatemanager.*;
 CertificateAuthorityProperty certificateAuthorityProperty = CertificateAuthorityProperty.builder()
         .publicCertificateAuthority(PublicCertificateAuthorityProperty.builder()
                 .allowedKeyAlgorithms(List.of("allowedKeyAlgorithms"))
                 .build())
         .build();
 

See Also: