Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::EC2::Types::NetworkBandwidthGbpsRequest

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

#maxFloat

The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.

Returns:

  • (Float)

58725
58726
58727
58728
58729
58730
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58725

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

#minFloat

The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.

Returns:

  • (Float)

58725
58726
58727
58728
58729
58730
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 58725

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