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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


387
388
389
390
391
392
# File 'lib/aws-sdk-networkmanager/types.rb', line 387

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

#upload_speedInteger

Upload speed in Mbps.

Returns:

  • (Integer)


387
388
389
390
391
392
# File 'lib/aws-sdk-networkmanager/types.rb', line 387

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