Class: Aws::DirectConnect::Types::UpdateLagRequest

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 UpdateLagRequest data as a hash:

{
  lag_id: "LagId", # required
  lag_name: "LagName",
  minimum_links: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#lag_idString

The ID of the LAG.

Returns:

  • (String)


2533
2534
2535
2536
2537
2538
# File 'lib/aws-sdk-directconnect/types.rb', line 2533

class UpdateLagRequest < Struct.new(
  :lag_id,
  :lag_name,
  :minimum_links)
  include Aws::Structure
end

#lag_nameString

The name of the LAG.

Returns:

  • (String)


2533
2534
2535
2536
2537
2538
# File 'lib/aws-sdk-directconnect/types.rb', line 2533

class UpdateLagRequest < Struct.new(
  :lag_id,
  :lag_name,
  :minimum_links)
  include Aws::Structure
end

The minimum number of physical connections that must be operational for the LAG itself to be operational.

Returns:

  • (Integer)


2533
2534
2535
2536
2537
2538
# File 'lib/aws-sdk-directconnect/types.rb', line 2533

class UpdateLagRequest < Struct.new(
  :lag_id,
  :lag_name,
  :minimum_links)
  include Aws::Structure
end