Interface CfnConnector.ConnectorVpcLatticeEgressConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnector.ConnectorVpcLatticeEgressConfigProperty.Jsii$Proxy
- Enclosing class:
CfnConnector
@Stability(Stable)
public static interface CfnConnector.ConnectorVpcLatticeEgressConfigProperty
extends software.amazon.jsii.JsiiSerializable
VPC_LATTICE egress configuration that specifies the Resource Configuration ARN and port for connecting to SFTP servers through customer VPCs.
Requires a valid Resource Configuration with appropriate network access.
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.*;
ConnectorVpcLatticeEgressConfigProperty connectorVpcLatticeEgressConfigProperty = ConnectorVpcLatticeEgressConfigProperty.builder()
.resourceConfigurationArn("resourceConfigurationArn")
// the properties below are optional
.portNumber(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnector.ConnectorVpcLatticeEgressConfigPropertystatic final classAn implementation forCfnConnector.ConnectorVpcLatticeEgressConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceConfigurationArn
ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location.Must point to a valid Resource Configuration in the customer's VPC with appropriate network connectivity to the SFTP server.
- See Also:
-
getPortNumber
Port number for connecting to the SFTP server through VPC_LATTICE.Defaults to 22 if not specified. Must match the port on which the target SFTP server is listening.
- See Also:
-
builder
-