Class: Aws::ECS::Types::Scale
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Scale
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ecs/types.rb
Overview
A floating-point percentage of the desired number of tasks to place and keep running in the task set.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unit ⇒ String
The unit of measure for the scale value.
-
#value ⇒ Float
The value, specified as a percent total of a service's `desiredCount`, to scale the task set.
Instance Attribute Details
#unit ⇒ String
The unit of measure for the scale value.
8242 8243 8244 8245 8246 8247 |
# File 'lib/aws-sdk-ecs/types.rb', line 8242 class Scale < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end |
#value ⇒ Float
The value, specified as a percent total of a service's `desiredCount`, to scale the task set. Accepted values are numbers between 0 and 100.
8242 8243 8244 8245 8246 8247 |
# File 'lib/aws-sdk-ecs/types.rb', line 8242 class Scale < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end |