Interface CfnConnector.ConnectorEgressConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.ConnectorEgressConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.ConnectorEgressConfigProperty
extends software.amazon.jsii.JsiiSerializable
Configuration structure that defines how traffic is routed from the connector to the SFTP server.
Contains VPC Lattice settings when using VPC_LATTICE egress type for private connectivity through customer VPCs.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.transfer.*;
ConnectorEgressConfigProperty connectorEgressConfigProperty = ConnectorEgressConfigProperty.builder()
.vpcLattice(ConnectorVpcLatticeEgressConfigProperty.builder()
.resourceConfigurationArn("resourceConfigurationArn")
// the properties below are optional
.portNumber(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.ConnectorEgressConfigPropertystatic final classAn implementation forCfnConnector.ConnectorEgressConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()VPC_LATTICE configuration for routing connector traffic through customer VPCs.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVpcLattice
VPC_LATTICE configuration for routing connector traffic through customer VPCs.Enables private connectivity to SFTP servers without requiring public internet access or complex network configurations.
Returns union: either
IResolvableorCfnConnector.ConnectorVpcLatticeEgressConfigProperty- See Also:
-
builder
-