Class: Aws::DirectConnect::Types::AssociateConnectionWithLagRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-directconnect/types.rb

Overview

Note:

When making an API call, you may pass AssociateConnectionWithLagRequest data as a hash:

{
  connection_id: "ConnectionId", # required
  lag_id: "LagId", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#connection_idString

The ID of the connection. For example, dxcon-abc123.

Returns:

  • (String)


202
203
204
205
206
# File 'lib/aws-sdk-directconnect/types.rb', line 202

class AssociateConnectionWithLagRequest < Struct.new(
  :connection_id,
  :lag_id)
  include Aws::Structure
end

#lag_idString

The ID of the LAG with which to associate the connection. For example, dxlag-abc123.

Returns:

  • (String)


202
203
204
205
206
# File 'lib/aws-sdk-directconnect/types.rb', line 202

class AssociateConnectionWithLagRequest < Struct.new(
  :connection_id,
  :lag_id)
  include Aws::Structure
end