interface ConnectorEgressConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnConnectorPropsMixin.ConnectorEgressConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnConnectorPropsMixin_ConnectorEgressConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnConnectorPropsMixin.ConnectorEgressConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnConnectorPropsMixin.ConnectorEgressConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » CfnConnectorPropsMixin » 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/cfn-property-mixins';
const connectorEgressConfigProperty: transfer.CfnConnectorPropsMixin.ConnectorEgressConfigProperty = {
vpcLattice: {
portNumber: 123,
resourceConfigurationArn: 'resourceConfigurationArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| vpc | IResolvable | Connector | VPC_LATTICE configuration for routing connector traffic through customer VPCs. |
vpcLattice?
Type:
IResolvable | Connector
(optional)
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