Class CfnConnector.ConnectorVpcLatticeEgressConfigProperty
VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs.
Inherited Members
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnConnector.ConnectorVpcLatticeEgressConfigProperty : CfnConnector.IConnectorVpcLatticeEgressConfigProperty
Syntax (vb)
Public Class CfnConnector.ConnectorVpcLatticeEgressConfigProperty Implements CfnConnector.IConnectorVpcLatticeEgressConfigProperty
Remarks
Requires a valid Resource Configuration with appropriate network access.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var connectorVpcLatticeEgressConfigProperty = new ConnectorVpcLatticeEgressConfigProperty {
ResourceConfigurationArn = "resourceConfigurationArn",
// the properties below are optional
PortNumber = 123
};
Synopsis
Constructors
| ConnectorVpcLatticeEgressConfigProperty() | VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs. |
Properties
| PortNumber | Port number for connecting to the SFTP server through VPC_LATTICE. |
| ResourceConfigurationArn | ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location. |
Constructors
ConnectorVpcLatticeEgressConfigProperty()
VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs.
public ConnectorVpcLatticeEgressConfigProperty()
Remarks
Requires a valid Resource Configuration with appropriate network access.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Transfer;
var connectorVpcLatticeEgressConfigProperty = new ConnectorVpcLatticeEgressConfigProperty {
ResourceConfigurationArn = "resourceConfigurationArn",
// the properties below are optional
PortNumber = 123
};
Properties
PortNumber
Port number for connecting to the SFTP server through VPC_LATTICE.
public double? PortNumber { get; set; }
Property Value
Remarks
Defaults to 22 if not specified. Must match the port on which the target SFTP server is listening.
ResourceConfigurationArn
ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location.
public string ResourceConfigurationArn { get; set; }
Property Value
Remarks
Must point to a valid Resource Configuration in the customer's VPC with appropriate network connectivity to the SFTP server.