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: