Show / Hide Table of Contents

Interface CfnConnector.IConnectorVpcLatticeEgressConfigProperty

VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs.

Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnector.IConnectorVpcLatticeEgressConfigProperty
Syntax (vb)
Public Interface CfnConnector.IConnectorVpcLatticeEgressConfigProperty
Remarks

Requires a valid Resource Configuration with appropriate network access.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectorvpclatticeegressconfig.html

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

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.

Properties

PortNumber

Port number for connecting to the SFTP server through VPC_LATTICE.

double? PortNumber { get; }
Property Value

double?

Remarks

Defaults to 22 if not specified. Must match the port on which the target SFTP server is listening.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectorvpclatticeegressconfig.html#cfn-transfer-connector-connectorvpclatticeegressconfig-portnumber

ResourceConfigurationArn

ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location.

string ResourceConfigurationArn { get; }
Property Value

string

Remarks

Must point to a valid Resource Configuration in the customer's VPC with appropriate network connectivity to the SFTP server.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectorvpclatticeegressconfig.html#cfn-transfer-connector-connectorvpclatticeegressconfig-resourceconfigurationarn

Back to top Generated by DocFX