Class: Aws::Transfer::Types::DescribedConnectorEgressConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb

Overview

Note:

DescribedConnectorEgressConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DescribedConnectorEgressConfig corresponding to the set member.

Response structure containing the current egress configuration details for the connector. Shows how traffic is currently routed from the connector to the SFTP server.

Direct Known Subclasses

Unknown, VpcLattice

Defined Under Namespace

Classes: Unknown, VpcLattice

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2734
2735
2736
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 2734

def unknown
  @unknown
end

#vpc_latticeTypes::DescribedConnectorVpcLatticeEgressConfig

VPC_LATTICE configuration details in the response, showing the current Resource Configuration ARN and port settings for VPC-based connectivity.



2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 2734

class DescribedConnectorEgressConfig < Struct.new(
  :vpc_lattice,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class VpcLattice < DescribedConnectorEgressConfig; end
  class Unknown < DescribedConnectorEgressConfig; end
end