Interface InterfaceVpcEndpointProps

All Superinterfaces:
InterfaceVpcEndpointOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
InterfaceVpcEndpointProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:28.908Z") @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();