Class: Aws::DirectConnect::Types::CreateLagRequest

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

{
  number_of_connections: 1, # required
  location: "LocationCode", # required
  connections_bandwidth: "Bandwidth", # required
  lag_name: "LagName", # required
  connection_id: "ConnectionId",
}

Instance Attribute Summary collapse

Instance Attribute Details

#connection_idString

The ID of an existing connection to migrate to the LAG.

Returns:

  • (String)


857
858
859
860
861
862
863
864
# File 'lib/aws-sdk-directconnect/types.rb', line 857

class CreateLagRequest < Struct.new(
  :number_of_connections,
  :location,
  :connections_bandwidth,
  :lag_name,
  :connection_id)
  include Aws::Structure
end

#connections_bandwidthString

The bandwidth of the individual physical connections bundled by the LAG. The possible values are 1Gbps and 10Gbps.

Returns:

  • (String)


857
858
859
860
861
862
863
864
# File 'lib/aws-sdk-directconnect/types.rb', line 857

class CreateLagRequest < Struct.new(
  :number_of_connections,
  :location,
  :connections_bandwidth,
  :lag_name,
  :connection_id)
  include Aws::Structure
end

#lag_nameString

The name of the LAG.

Returns:

  • (String)


857
858
859
860
861
862
863
864
# File 'lib/aws-sdk-directconnect/types.rb', line 857

class CreateLagRequest < Struct.new(
  :number_of_connections,
  :location,
  :connections_bandwidth,
  :lag_name,
  :connection_id)
  include Aws::Structure
end

#locationString

The location for the LAG.

Returns:

  • (String)


857
858
859
860
861
862
863
864
# File 'lib/aws-sdk-directconnect/types.rb', line 857

class CreateLagRequest < Struct.new(
  :number_of_connections,
  :location,
  :connections_bandwidth,
  :lag_name,
  :connection_id)
  include Aws::Structure
end

#number_of_connectionsInteger

The number of physical connections initially provisioned and bundled by the LAG.

Returns:

  • (Integer)


857
858
859
860
861
862
863
864
# File 'lib/aws-sdk-directconnect/types.rb', line 857

class CreateLagRequest < Struct.new(
  :number_of_connections,
  :location,
  :connections_bandwidth,
  :lag_name,
  :connection_id)
  include Aws::Structure
end