interface ConnectorVpcLatticeEgressConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Transfer.Mixins.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstransfer/mixins#CfnConnectorPropsMixin_ConnectorVpcLatticeEgressConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.transfer.mixins.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty |
Python | aws_cdk.mixins_preview.aws_transfer.mixins.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_transfer » mixins » CfnConnectorPropsMixin » 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 { mixins as transfer_mixins } from '@aws-cdk/mixins-preview/aws-transfer';
const connectorVpcLatticeEgressConfigProperty: transfer_mixins.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty = {
portNumber: 123,
resourceConfigurationArn: 'resourceConfigurationArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| port | number | Port number for connecting to the SFTP server through VPC_LATTICE. |
| resource | string | ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location. |
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.
resourceConfigurationArn?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript