Class: Aws::EC2::Types::BaselineEbsBandwidthMbpsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::BaselineEbsBandwidthMbpsRequest
- Includes:
- Structure
- Defined in:
- 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*.
[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-optimized.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Integer
The maximum baseline bandwidth, in Mbps.
-
#min ⇒ Integer
The minimum baseline bandwidth, in Mbps.
Instance Attribute Details
#max ⇒ Integer
The maximum baseline bandwidth, in Mbps. To specify no maximum limit, omit this parameter.
3797 3798 3799 3800 3801 3802 |
# File 'lib/aws-sdk-ec2/types.rb', line 3797 class BaselineEbsBandwidthMbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Integer
The minimum baseline bandwidth, in Mbps. To specify no minimum limit, omit this parameter.
3797 3798 3799 3800 3801 3802 |
# File 'lib/aws-sdk-ec2/types.rb', line 3797 class BaselineEbsBandwidthMbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |