Class: Aws::EC2::Types::NetworkBandwidthGbps

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

Overview

The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps).

Setting the minimum bandwidth does not guarantee that your instance will achieve the minimum bandwidth. Amazon EC2 will identify instance types that support the specified minimum bandwidth, but the actual bandwidth of your instance might go below the specified minimum at times. For more information, see Available instance bandwidth in the Amazon EC2 User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max ⇒ Float

The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.

Returns:

  • (Float)


71552
71553
71554
71555
71556
71557
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 71552

class NetworkBandwidthGbps < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end

#min ⇒ Float

The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.

Returns:

  • (Float)


71552
71553
71554
71555
71556
71557
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 71552

class NetworkBandwidthGbps < Struct.new(
  :min,
  :max)
  SENSITIVE = []
  include Aws::Structure
end