Show / Hide Table of Contents

Class CfnConnector.ConnectorVpcLatticeEgressConfigProperty

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

Inheritance
object
CfnConnector.ConnectorVpcLatticeEgressConfigProperty
Implements
CfnConnector.IConnectorVpcLatticeEgressConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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.

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

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.

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
             };

Properties

PortNumber

Port number for connecting to the SFTP server through VPC_LATTICE.

public double? PortNumber { get; set; }
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.

public string ResourceConfigurationArn { get; set; }
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

Implements

CfnConnector.IConnectorVpcLatticeEgressConfigProperty
Back to top Generated by DocFX