Interface CfnNetworkConnectorPropsMixin.VpcEgressConfigurationProperty

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

@Stability(Stable) public static interface CfnNetworkConnectorPropsMixin.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.cfnpropertymixins.services.lambda.*;
 VpcEgressConfigurationProperty vpcEgressConfigurationProperty = VpcEgressConfigurationProperty.builder()
         .associatedComputeResourceTypes(List.of("associatedComputeResourceTypes"))
         .networkProtocol("networkProtocol")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .build();
 

See Also: