interface ConnectorVpcLatticeEgressConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Transfer.CfnConnector.ConnectorVpcLatticeEgressConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnConnector_ConnectorVpcLatticeEgressConfigProperty |
Java | software.amazon.awscdk.services.transfer.CfnConnector.ConnectorVpcLatticeEgressConfigProperty |
Python | aws_cdk.aws_transfer.CfnConnector.ConnectorVpcLatticeEgressConfigProperty |
TypeScript | aws-cdk-lib » aws_transfer » CfnConnector » ConnectorVpcLatticeEgressConfigProperty |
VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs.
Requires a valid Resource Configuration with appropriate network access.
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 connectorVpcLatticeEgressConfigProperty: transfer.CfnConnector.ConnectorVpcLatticeEgressConfigProperty = {
resourceConfigurationArn: 'resourceConfigurationArn',
// the properties below are optional
portNumber: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location. |
| port | number | Port number for connecting to the SFTP server through VPC_LATTICE. |
resourceConfigurationArn
Type:
string
ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location.
Must point to a valid Resource Configuration in the customer's VPC with appropriate network connectivity to the SFTP server.
portNumber?
Type:
number
(optional)
Port number for connecting to the SFTP server through VPC_LATTICE.
Defaults to 22 if not specified. Must match the port on which the target SFTP server is listening.

.NET
Go
Java
Python
TypeScript