interface ConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnNetworkConnectorPropsMixin.ConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnNetworkConnectorPropsMixin_ConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnNetworkConnectorPropsMixin.ConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnNetworkConnectorPropsMixin.ConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnNetworkConnectorPropsMixin » ConfigProperty |
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 { aws_lambda as lambda } from '@aws-cdk/cfn-property-mixins';
const configProperty: lambda.CfnNetworkConnectorPropsMixin.ConfigProperty = {
vpcEgressConfiguration: {
associatedComputeResourceTypes: ['associatedComputeResourceTypes'],
networkProtocol: 'networkProtocol',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | IResolvable | Vpc | The VPC egress configuration for the network connector. |
vpcEgressConfiguration?
Type:
IResolvable | Vpc
(optional)
The VPC egress configuration for the network connector.
Specifies the subnets, security groups, and network protocol for routing outbound traffic through your VPC.

.NET
Go
Java
Python
TypeScript