Interface CfnVpcIngressConnection.IngressVpcConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVpcIngressConnection.IngressVpcConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnVpcIngressConnection

@Stability(Stable) public static interface CfnVpcIngressConnection.IngressVpcConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifications for the customer’s VPC and related PrivateLink VPC endpoint that are used to associate with the VPC Ingress Connection resource.

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.apprunner.*;
 IngressVpcConfigurationProperty ingressVpcConfigurationProperty = IngressVpcConfigurationProperty.builder()
         .vpcEndpointId("vpcEndpointId")
         .vpcId("vpcId")
         .build();
 

See Also: