Class: Aws::ECS::Types::Scale
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Scale
- Defined in:
- gems/aws-sdk-ecs/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.
9202 9203 9204 9205 9206 9207 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 9202 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.
9202 9203 9204 9205 9206 9207 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 9202 class Scale < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end |