interface ConnectorVpcLatticeEgressConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Transfer.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstransfer#CfnConnectorPropsMixin_ConnectorVpcLatticeEgressConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.transfer.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_transfer.CfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_transfer » 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 { aws_transfer as transfer } from '@aws-cdk/cfn-property-mixins';
const connectorVpcLatticeEgressConfigProperty: transfer.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