Interface CfnVPCEndpointProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVPCEndpointProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2025-01-15T21:09:18.063Z") @Stability(Stable) public interface CfnVPCEndpointProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnVPCEndpoint.

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.ec2.*;
 Object policyDocument;
 CfnVPCEndpointProps cfnVPCEndpointProps = CfnVPCEndpointProps.builder()
         .vpcId("vpcId")
         // the properties below are optional
         .dnsOptions(DnsOptionsSpecificationProperty.builder()
                 .dnsRecordIpType("dnsRecordIpType")
                 .privateDnsOnlyForInboundResolverEndpoint("privateDnsOnlyForInboundResolverEndpoint")
                 .build())
         .ipAddressType("ipAddressType")
         .policyDocument(policyDocument)
         .privateDnsEnabled(false)
         .resourceConfigurationArn("resourceConfigurationArn")
         .routeTableIds(List.of("routeTableIds"))
         .securityGroupIds(List.of("securityGroupIds"))
         .serviceName("serviceName")
         .serviceNetworkArn("serviceNetworkArn")
         .subnetIds(List.of("subnetIds"))
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .vpcEndpointType("vpcEndpointType")
         .build();
 

See Also: