Interface CfnCertificate.DomainValidationOptionProperty

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

@Stability(Stable) public static interface CfnCertificate.DomainValidationOptionProperty extends software.amazon.jsii.JsiiSerializable
DomainValidationOption is a property of the AWS::CertificateManager::Certificate resource that specifies the AWS Certificate Manager ( ACM ) certificate domain to validate. Depending on the chosen validation method, ACM checks the domain's DNS record for a validation CNAME, or it attempts to send a validation email message to the domain owner.

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.*;
 DomainValidationOptionProperty domainValidationOptionProperty = DomainValidationOptionProperty.builder()
         .domainName("domainName")
         // the properties below are optional
         .hostedZoneId("hostedZoneId")
         .validationDomain("validationDomain")
         .build();
 

See Also: