Interface CfnDistribution.LegacyCustomOriginProperty

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

@Stability(Stable) public static interface CfnDistribution.LegacyCustomOriginProperty 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.cloudfront.*;
 LegacyCustomOriginProperty legacyCustomOriginProperty = LegacyCustomOriginProperty.builder()
         .dnsName("dnsName")
         .originProtocolPolicy("originProtocolPolicy")
         .originSslProtocols(List.of("originSslProtocols"))
         // the properties below are optional
         .httpPort(123)
         .httpsPort(123)
         .build();
 

See Also: