Class: Aws::NetworkManager::Types::Bandwidth

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb

Overview

Describes bandwidth information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#download_speedInteger

Download speed in Mbps.

Returns:

  • (Integer)


333
334
335
336
337
338
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 333

class Bandwidth < Struct.new(
  :upload_speed,
  :download_speed)
  SENSITIVE = []
  include Aws::Structure
end

#upload_speedInteger

Upload speed in Mbps.

Returns:

  • (Integer)


333
334
335
336
337
338
# File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 333

class Bandwidth < Struct.new(
  :upload_speed,
  :download_speed)
  SENSITIVE = []
  include Aws::Structure
end