Interface CfnVpcOriginMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVpcOriginMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:57.125Z")
@Stability(Stable)
public interface CfnVpcOriginMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVpcOriginPropsMixin.
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.*;
CfnVpcOriginMixinProps cfnVpcOriginMixinProps = CfnVpcOriginMixinProps.builder()
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcOriginEndpointConfig(VpcOriginEndpointConfigProperty.builder()
.arn("arn")
.httpPort(123)
.httpsPort(123)
.name("name")
.originProtocolPolicy("originProtocolPolicy")
.originSslProtocols(List.of("originSslProtocols"))
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVpcOriginMixinPropsstatic final classAn implementation forCfnVpcOriginMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getTags
A complex type that contains zero or moreTagelements.- See Also:
-
getVpcOriginEndpointConfig
The VPC origin endpoint configuration.Returns union: either
IResolvableorCfnVpcOriginPropsMixin.VpcOriginEndpointConfigProperty- See Also:
-
builder
- Returns:
- a
CfnVpcOriginMixinProps.BuilderofCfnVpcOriginMixinProps
-