Interface CfnHttpApi.HttpApiDomainConfigurationProperty

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

@Stability(Stable) public static interface CfnHttpApi.HttpApiDomainConfigurationProperty 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.*;
 HttpApiDomainConfigurationProperty httpApiDomainConfigurationProperty = HttpApiDomainConfigurationProperty.builder()
         .certificateArn("certificateArn")
         .domainName("domainName")
         // the properties below are optional
         .basePath("basePath")
         .endpointConfiguration("endpointConfiguration")
         .mutualTlsAuthentication(MutualTlsAuthenticationProperty.builder()
                 .truststoreUri("truststoreUri")
                 .truststoreVersion(false)
                 .build())
         .route53(Route53ConfigurationProperty.builder()
                 .distributedDomainName("distributedDomainName")
                 .evaluateTargetHealth(false)
                 .hostedZoneId("hostedZoneId")
                 .hostedZoneName("hostedZoneName")
                 .ipV6(false)
                 .build())
         .securityPolicy("securityPolicy")
         .build();
 

See Also: