You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateLagRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  number_of_connections: 1, # required
  location: "LocationCode", # required
  connections_bandwidth: "Bandwidth", # required
  lag_name: "LagName", # required
  connection_id: "ConnectionId",
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
  child_connection_tags: [
    {
      key: "TagKey", # required
      value: "TagValue",
    },
  ],
  provider_name: "ProviderName",
}

Instance Attribute Summary collapse

Instance Attribute Details

#child_connection_tagsArray<Types::Tag>

The tags to associate with the automtically created LAGs.

Returns:

  • (Array<Types::Tag>)

    The tags to associate with the automtically created LAGs.

#connection_idString

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

Returns:

  • (String)

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

#connections_bandwidthString

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

Returns:

  • (String)

    The bandwidth of the individual physical dedicated connections bundled by the LAG.

#lag_nameString

The name of the LAG.

Returns:

  • (String)

    The name of the LAG.

#locationString

The location for the LAG.

Returns:

  • (String)

    The location for the LAG.

#number_of_connectionsInteger

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

Returns:

  • (Integer)

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

#provider_nameString

The name of the service provider associated with the LAG.

Returns:

  • (String)

    The name of the service provider associated with the LAG.

#tagsArray<Types::Tag>

The tags to associate with the LAG.

Returns:

  • (Array<Types::Tag>)

    The tags to associate with the LAG.