Interface CfnNetworkConnector.VpcEgressConfigurationProperty

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

@Stability(Stable) public static interface CfnNetworkConnector.VpcEgressConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The VPC egress configuration for the network connector.

Specifies the subnets, security groups, and network protocol for routing outbound traffic through your VPC.

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.lambda.*;
 VpcEgressConfigurationProperty vpcEgressConfigurationProperty = VpcEgressConfigurationProperty.builder()
         .associatedComputeResourceTypes(List.of("associatedComputeResourceTypes"))
         .subnetIds(List.of("subnetIds"))
         // the properties below are optional
         .networkProtocol("networkProtocol")
         .securityGroupIds(List.of("securityGroupIds"))
         .build();
 

See Also: