Interface CfnNetworkConnectorPropsMixin.ConfigProperty

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

@Stability(Stable) public static interface CfnNetworkConnectorPropsMixin.ConfigProperty extends software.amazon.jsii.JsiiSerializable
The network configuration for the connector.

Specify a VpcEgressConfiguration to enable outbound traffic routing 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.*;
 ConfigProperty configProperty = ConfigProperty.builder()
         .vpcEgressConfiguration(VpcEgressConfigurationProperty.builder()
                 .associatedComputeResourceTypes(List.of("associatedComputeResourceTypes"))
                 .networkProtocol("networkProtocol")
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .build();
 

See Also: