Class: Aws::DirectConnect::Types::AllocateConnectionOnInterconnectRequest

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

{
  bandwidth: "Bandwidth", # required
  connection_name: "ConnectionName", # required
  owner_account: "OwnerAccount", # required
  interconnect_id: "InterconnectId", # required
  vlan: 1, # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#bandwidthString

The bandwidth of the connection, in Mbps. The possible values are 50Mbps, 100Mbps, 200Mbps, 300Mbps, 400Mbps, and 500Mbps.

Returns:

  • (String)


47
48
49
50
51
52
53
54
# File 'lib/aws-sdk-directconnect/types.rb', line 47

class AllocateConnectionOnInterconnectRequest < Struct.new(
  :bandwidth,
  :connection_name,
  :owner_account,
  :interconnect_id,
  :vlan)
  include Aws::Structure
end

#connection_nameString

The name of the provisioned connection.

Returns:

  • (String)


47
48
49
50
51
52
53
54
# File 'lib/aws-sdk-directconnect/types.rb', line 47

class AllocateConnectionOnInterconnectRequest < Struct.new(
  :bandwidth,
  :connection_name,
  :owner_account,
  :interconnect_id,
  :vlan)
  include Aws::Structure
end

#interconnect_idString

The ID of the interconnect on which the connection will be provisioned. For example, dxcon-456abc78.

Returns:

  • (String)


47
48
49
50
51
52
53
54
# File 'lib/aws-sdk-directconnect/types.rb', line 47

class AllocateConnectionOnInterconnectRequest < Struct.new(
  :bandwidth,
  :connection_name,
  :owner_account,
  :interconnect_id,
  :vlan)
  include Aws::Structure
end

#owner_accountString

The ID of the AWS account of the customer for whom the connection will be provisioned.

Returns:

  • (String)


47
48
49
50
51
52
53
54
# File 'lib/aws-sdk-directconnect/types.rb', line 47

class AllocateConnectionOnInterconnectRequest < Struct.new(
  :bandwidth,
  :connection_name,
  :owner_account,
  :interconnect_id,
  :vlan)
  include Aws::Structure
end

#vlanInteger

The dedicated VLAN provisioned to the connection.

Returns:

  • (Integer)


47
48
49
50
51
52
53
54
# File 'lib/aws-sdk-directconnect/types.rb', line 47

class AllocateConnectionOnInterconnectRequest < Struct.new(
  :bandwidth,
  :connection_name,
  :owner_account,
  :interconnect_id,
  :vlan)
  include Aws::Structure
end