Class: Aws::Transfer::Types::UpdateConnectorEgressConfig

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

Overview

Note:

UpdateConnectorEgressConfig is a union - when making an API calls you must set exactly one of the members.

Structure for updating the egress configuration of an existing connector. Allows modification of how traffic is routed from the connector to the SFTP server, including VPC_LATTICE settings.

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



6915
6916
6917
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6915

def unknown
  @unknown
end

#vpc_latticeTypes::UpdateConnectorVpcLatticeEgressConfig

VPC_LATTICE configuration updates for the connector. Use this to modify the Resource Configuration ARN or port number for VPC-based connectivity.



6915
6916
6917
6918
6919
6920
6921
6922
6923
6924
# File 'gems/aws-sdk-transfer/lib/aws-sdk-transfer/types.rb', line 6915

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

  class VpcLattice < UpdateConnectorEgressConfig; end
  class Unknown < UpdateConnectorEgressConfig; end
end