Interface CfnDomain.CertificateSettingsProperty

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

@Stability(Stable) public static interface CfnDomain.CertificateSettingsProperty extends software.amazon.jsii.JsiiSerializable
The type of SSL/TLS certificate to use for your custom domain.

If a certificate type isn't specified, Amplify uses the default AMPLIFY_MANAGED 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.*;
 CertificateSettingsProperty certificateSettingsProperty = CertificateSettingsProperty.builder()
         .certificateType("certificateType")
         .customCertificateArn("customCertificateArn")
         .build();
 

See Also: