interface ConnectorEgressConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnConnector.ConnectorEgressConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnConnector_ConnectorEgressConfigProperty |
Java | software.amazon.awscdk.services.transfer.CfnConnector.ConnectorEgressConfigProperty |
Python | aws_cdk.aws_transfer.CfnConnector.ConnectorEgressConfigProperty |
TypeScript | aws-cdk-lib » aws_transfer » CfnConnector » ConnectorEgressConfigProperty |
Configuration structure that defines how traffic is routed from the connector to the SFTP server.
Contains VPC Lattice settings when using VPC_LATTICE egress type for private connectivity through customer VPCs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from 'aws-cdk-lib';
const connectorEgressConfigProperty: transfer.CfnConnector.ConnectorEgressConfigProperty = {
vpcLattice: {
resourceConfigurationArn: 'resourceConfigurationArn',
// the properties below are optional
portNumber: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | IResolvable | Connector | VPC_LATTICE configuration for routing connector traffic through customer VPCs. |
vpcLattice
Type:
IResolvable | Connector
VPC_LATTICE configuration for routing connector traffic through customer VPCs.
Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.

.NET
Go
Java
Python
TypeScript