Interface CfnDistributionPropsMixin.VpcOriginConfigProperty

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

@Stability(Stable) public static interface CfnDistributionPropsMixin.VpcOriginConfigProperty extends software.amazon.jsii.JsiiSerializable
An Amazon CloudFront VPC origin configuration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.cloudfront.*;
 VpcOriginConfigProperty vpcOriginConfigProperty = VpcOriginConfigProperty.builder()
         .originKeepaliveTimeout(123)
         .originReadTimeout(123)
         .ownerAccountId("ownerAccountId")
         .vpcOriginId("vpcOriginId")
         .build();
 

See Also: