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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAcmeDomainValidationPropsMixin.DomainScopePropertystatic final classAn implementation forCfnAcmeDomainValidationPropsMixin.DomainScopeProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExactDomain
Whether certificates may be issued for the exact domain.- See Also:
-
getSubdomains
Whether certificates may be issued for subdomains of the domain.- See Also:
-
getWildcards
Whether wildcard certificates may be issued for the domain.- See Also:
-
builder
-