Interface VpcOriginProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, VpcOriginOptions
All Known Implementing Classes:
VpcOriginProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-04T12:43:03.594Z") @Stability(Stable) public interface VpcOriginProps extends software.amazon.jsii.JsiiSerializable, VpcOriginOptions
VPC origin endpoint 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.services.cloudfront.*;
 VpcOriginEndpoint vpcOriginEndpoint;
 VpcOriginProps vpcOriginProps = VpcOriginProps.builder()
         .endpoint(vpcOriginEndpoint)
         // the properties below are optional
         .httpPort(123)
         .httpsPort(123)
         .originSslProtocols(List.of(OriginSslPolicy.SSL_V3))
         .protocolPolicy(OriginProtocolPolicy.HTTP_ONLY)
         .vpcOriginName("vpcOriginName")
         .build();