Class: Aws::DirectConnect::Types::AllocateHostedConnectionRequest

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

{
  connection_id: "ConnectionId", # required
  owner_account: "OwnerAccount", # required
  bandwidth: "Bandwidth", # required
  connection_name: "ConnectionName", # required
  vlan: 1, # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#bandwidthString

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

Returns:

  • (String)


90
91
92
93
94
95
96
97
# File 'lib/aws-sdk-directconnect/types.rb', line 90

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

#connection_idString

The ID of the interconnect or LAG.

Returns:

  • (String)


90
91
92
93
94
95
96
97
# File 'lib/aws-sdk-directconnect/types.rb', line 90

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

#connection_nameString

The name of the hosted connection.

Returns:

  • (String)


90
91
92
93
94
95
96
97
# File 'lib/aws-sdk-directconnect/types.rb', line 90

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

#owner_accountString

The ID of the AWS account ID of the customer for the connection.

Returns:

  • (String)


90
91
92
93
94
95
96
97
# File 'lib/aws-sdk-directconnect/types.rb', line 90

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

#vlanInteger

The dedicated VLAN provisioned to the hosted connection.

Returns:

  • (Integer)


90
91
92
93
94
95
96
97
# File 'lib/aws-sdk-directconnect/types.rb', line 90

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