Class: Aws::AutoScaling::Types::NetworkBandwidthGbpsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::NetworkBandwidthGbpsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-autoscaling/types.rb
Overview
Specifies the minimum and maximum for the ‘NetworkBandwidthGbps` object when you specify [InstanceRequirements] for an Auto Scaling group.
<note markdown=“1”> 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 for Linux Instances*.
</note>
[1]: docs.aws.amazon.com/autoscaling/ec2/APIReference/API_InstanceRequirements.html [2]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-network-bandwidth.html#available-instance-bandwidth
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max ⇒ Float
The maximum amount of network bandwidth, in gigabits per second (Gbps).
-
#min ⇒ Float
The minimum amount of network bandwidth, in gigabits per second (Gbps).
Instance Attribute Details
#max ⇒ Float
The maximum amount of network bandwidth, in gigabits per second (Gbps).
5466 5467 5468 5469 5470 5471 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 5466 class NetworkBandwidthGbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |
#min ⇒ Float
The minimum amount of network bandwidth, in gigabits per second (Gbps).
5466 5467 5468 5469 5470 5471 |
# File 'lib/aws-sdk-autoscaling/types.rb', line 5466 class NetworkBandwidthGbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |