Interface CfnHttpApi.Route53ConfigurationProperty

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

@Stability(Stable) public static interface CfnHttpApi.Route53ConfigurationProperty 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.*;
 Route53ConfigurationProperty route53ConfigurationProperty = Route53ConfigurationProperty.builder()
         .distributedDomainName("distributedDomainName")
         .evaluateTargetHealth(false)
         .hostedZoneId("hostedZoneId")
         .hostedZoneName("hostedZoneName")
         .ipV6(false)
         .build();
 

See Also: