Interface CfnDomain.CertificateProperty

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

@Stability(Stable) public static interface CfnDomain.CertificateProperty extends software.amazon.jsii.JsiiSerializable
Describes the SSL/TLS certificate for the domain association.

This can be your own custom certificate or the default certificate that Amplify provisions for you.

If you are updating your domain to use a different certificate, Certificate points to the new certificate that is being created instead of the current active certificate. Otherwise, Certificate points to the current active certificate.

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.amplify.*;
 CertificateProperty certificateProperty = CertificateProperty.builder()
         .certificateArn("certificateArn")
         .certificateType("certificateType")
         .certificateVerificationDnsRecord("certificateVerificationDnsRecord")
         .build();
 

See Also: