interface CfnNetworkConnectorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lambda.CfnNetworkConnectorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslambda#CfnNetworkConnectorMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.lambda.CfnNetworkConnectorMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_lambda.CfnNetworkConnectorMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lambda » CfnNetworkConnectorMixinProps |
Properties for CfnNetworkConnectorPropsMixin.
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 cfnNetworkConnectorMixinProps: lambda.CfnNetworkConnectorMixinProps = {
configuration: {
vpcEgressConfiguration: {
associatedComputeResourceTypes: ['associatedComputeResourceTypes'],
networkProtocol: 'networkProtocol',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
},
name: 'name',
operatorRole: 'operatorRole',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration? | IResolvable | Config | The network configuration for the connector. |
| name? | string | A unique name for the network connector within your account and Region. |
| operator | string | The ARN of the IAM role that Lambda assumes to manage elastic network interfaces in your VPC. |
| tags? | Cfn[] | A list of tags to apply to the network connector. |
configuration?
Type:
IResolvable | Config
(optional)
The network configuration for the connector.
Specify a VpcEgressConfiguration to enable outbound traffic routing through your VPC.
name?
Type:
string
(optional)
A unique name for the network connector within your account and Region.
Must be 1 to 64 alphanumeric characters, hyphens, or underscores.
operatorRole?
Type:
string
(optional)
The ARN of the IAM role that Lambda assumes to manage elastic network interfaces in your VPC.
This role must have permissions for ec2:CreateNetworkInterface and related describe operations.
tags?
Type:
Cfn[]
(optional)
A list of tags to apply to the network connector.
Use tags to categorize network connectors for cost allocation, access control, or operational management.

.NET
Go
Java
Python
TypeScript