Interface CfnApi.DomainConfigurationProperty

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

@Stability(Stable) public static interface CfnApi.DomainConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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.sam.*;
 DomainConfigurationProperty domainConfigurationProperty = DomainConfigurationProperty.builder()
         .certificateArn("certificateArn")
         .domainName("domainName")
         // the properties below are optional
         .basePath(List.of("basePath"))
         .endpointConfiguration("endpointConfiguration")
         .mutualTlsAuthentication(MutualTlsAuthenticationProperty.builder()
                 .truststoreUri("truststoreUri")
                 .truststoreVersion("truststoreVersion")
                 .build())
         .ownershipVerificationCertificateArn("ownershipVerificationCertificateArn")
         .route53(Route53ConfigurationProperty.builder()
                 .distributedDomainName("distributedDomainName")
                 .evaluateTargetHealth(false)
                 .hostedZoneId("hostedZoneId")
                 .hostedZoneName("hostedZoneName")
                 .ipV6(false)
                 .build())
         .securityPolicy("securityPolicy")
         .build();
 

See Also: