Interface CfnConnectorPropsMixin.ConnectorEgressConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorPropsMixin.ConnectorEgressConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorPropsMixin
@Stability(Stable)
public static interface CfnConnectorPropsMixin.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.cfnpropertymixins.services.transfer.*;
ConnectorEgressConfigProperty connectorEgressConfigProperty = ConnectorEgressConfigProperty.builder()
.vpcLattice(ConnectorVpcLatticeEgressConfigProperty.builder()
.portNumber(123)
.resourceConfigurationArn("resourceConfigurationArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnectorPropsMixin.ConnectorEgressConfigPropertystatic final classAn implementation forCfnConnectorPropsMixin.ConnectorEgressConfigProperty -
Method Summary
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
IResolvableorCfnConnectorPropsMixin.ConnectorVpcLatticeEgressConfigProperty- See Also:
-
builder
-