Class: Aws::AutoScaling::Types::NetworkBandwidthGbpsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::NetworkBandwidthGbpsRequest
- Defined in:
- gems/aws-sdk-autoscaling/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.
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 'gems/aws-sdk-autoscaling/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 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 5466 class NetworkBandwidthGbpsRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end |