Interface CfnDomainPropsMixin.CertificateSettingsProperty

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

@Stability(Stable) public static interface CfnDomainPropsMixin.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.mixins.preview.services.amplify.mixins.*;
 CertificateSettingsProperty certificateSettingsProperty = CertificateSettingsProperty.builder()
         .certificateType("certificateType")
         .customCertificateArn("customCertificateArn")
         .build();
 

See Also: