Class: Aws::Transfer::Types::ConnectorVpcLatticeEgressConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Transfer::Types::ConnectorVpcLatticeEgressConfig
- Defined in:
- gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb
Overview
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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#port_number ⇒ Integer
Port number for connecting to the SFTP server through VPC_LATTICE.
-
#resource_configuration_arn ⇒ String
ARN of the VPC_LATTICE Resource Configuration that defines the target SFTP server location.
Instance Attribute Details
#port_number ⇒ Integer
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.
241 242 243 244 245 246 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 241 class ConnectorVpcLatticeEgressConfig < Struct.new( :resource_configuration_arn, :port_number) SENSITIVE = [] include Aws::Structure end |
#resource_configuration_arn ⇒ String
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.
241 242 243 244 245 246 |
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 241 class ConnectorVpcLatticeEgressConfig < Struct.new( :resource_configuration_arn, :port_number) SENSITIVE = [] include Aws::Structure end |