Interface InterfaceVpcEndpointProps
- All Superinterfaces:
InterfaceVpcEndpointOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InterfaceVpcEndpointProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.435Z")
@Stability(Stable)
public interface InterfaceVpcEndpointProps
extends software.amazon.jsii.JsiiSerializable, InterfaceVpcEndpointOptions
Construction properties for an InterfaceVpcEndpoint.
Example:
Vpc vpc; InterfaceVpcEndpoint.Builder.create(this, "VPC Endpoint") .vpc(vpc) .service(new InterfaceVpcEndpointService("com.amazonaws.vpce.us-east-1.vpce-svc-uuddlrlrbastrtsvc", 443)) // Choose which availability zones to place the VPC endpoint in, based on // available AZs .subnets(SubnetSelection.builder() .availabilityZones(List.of("us-east-1a", "us-east-1c")) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forInterfaceVpcEndpointProps
static final class
An implementation forInterfaceVpcEndpointProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.ec2.InterfaceVpcEndpointOptions
getLookupSupportedAzs, getOpen, getPrivateDnsEnabled, getSecurityGroups, getService, getSubnets
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpc
The VPC network in which the interface endpoint will be used. -
builder
- Returns:
- a
InterfaceVpcEndpointProps.Builder
ofInterfaceVpcEndpointProps
-