Interface CfnNetworkConnectorProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnNetworkConnectorProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)", date="2026-07-02T13:32:41.780Z") @Stability(Stable) public interface CfnNetworkConnectorProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnNetworkConnector.

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.*;
 CfnNetworkConnectorProps cfnNetworkConnectorProps = CfnNetworkConnectorProps.builder()
         .configuration(ConfigProperty.builder()
                 .vpcEgressConfiguration(VpcEgressConfigurationProperty.builder()
                         .associatedComputeResourceTypes(List.of("associatedComputeResourceTypes"))
                         .subnetIds(List.of("subnetIds"))
                         // the properties below are optional
                         .networkProtocol("networkProtocol")
                         .securityGroupIds(List.of("securityGroupIds"))
                         .build())
                 .build())
         // the properties below are optional
         .name("name")
         .operatorRole("operatorRole")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: