Class: Aws::EC2::Types::BaselineEbsBandwidthMbps

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

Overview

The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maxInteger

The maximum baseline bandwidth, in Mbps. If this parameter is not specified, there is no maximum limit.

Returns:

  • (Integer)


3569
3570
3571
3572
3573
3574
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3569

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

#minInteger

The minimum baseline bandwidth, in Mbps. If this parameter is not specified, there is no minimum limit.

Returns:

  • (Integer)


3569
3570
3571
3572
3573
3574
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3569

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