Show / Hide Table of Contents

Interface CfnConnector.IConnectorEgressConfigProperty

Configuration structure that defines how traffic is routed from the connector to the SFTP server.

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

Contains VPC Lattice settings when using VPC_LATTICE egress type for private connectivity through customer VPCs.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-connector-connectoregressconfig.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 connectorEgressConfigProperty = new ConnectorEgressConfigProperty {
                 VpcLattice = new ConnectorVpcLatticeEgressConfigProperty {
                     ResourceConfigurationArn = "resourceConfigurationArn",

                     // the properties below are optional
                     PortNumber = 123
                 }
             };

Synopsis

Properties

VpcLattice

VPC_LATTICE configuration for routing connector traffic through customer VPCs.

Properties

VpcLattice

VPC_LATTICE configuration for routing connector traffic through customer VPCs.

object VpcLattice { get; }
Property Value

object

Remarks

Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.

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

Type union: either IResolvable or CfnConnector.IConnectorVpcLatticeEgressConfigProperty

Back to top Generated by DocFX