Interface CfnAcmeDomainValidationPropsMixin.DnsPrevalidationOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAcmeDomainValidationPropsMixin.DnsPrevalidationOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnAcmeDomainValidationPropsMixin
@Stability(Stable)
public static interface CfnAcmeDomainValidationPropsMixin.DnsPrevalidationOptionsProperty
extends software.amazon.jsii.JsiiSerializable
DNS-based prevalidation options for the domain validation.
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.*;
DnsPrevalidationOptionsProperty dnsPrevalidationOptionsProperty = DnsPrevalidationOptionsProperty.builder()
.domainScope(DomainScopeProperty.builder()
.exactDomain("exactDomain")
.subdomains("subdomains")
.wildcards("wildcards")
.build())
.hostedZoneId("hostedZoneId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnAcmeDomainValidationPropsMixin.DnsPrevalidationOptionsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainScope
Controls which certificate types are authorized to be issued for the domain via the ACME endpoint.Returns union: either
IResolvableorCfnAcmeDomainValidationPropsMixin.DomainScopeProperty- See Also:
-
getHostedZoneId
The Route 53 hosted zone ID for automatic DNS record management.When provided, the service creates the validation DNS record on the customer's behalf.
- See Also:
-
builder
@Stability(Stable) static CfnAcmeDomainValidationPropsMixin.DnsPrevalidationOptionsProperty.Builder builder()
-