Interface CfnAcmeDomainValidationPropsMixin.DomainScopeProperty

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

@Stability(Stable) public static interface CfnAcmeDomainValidationPropsMixin.DomainScopeProperty extends software.amazon.jsii.JsiiSerializable
Controls which certificate types are authorized to be issued for the domain via 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.*;
 DomainScopeProperty domainScopeProperty = DomainScopeProperty.builder()
         .exactDomain("exactDomain")
         .subdomains("subdomains")
         .wildcards("wildcards")
         .build();
 

See Also: