Class: Aws::ECS::Types::Scale

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#unitString

The unit of measure for the scale value.

Returns:

  • (String)


8762
8763
8764
8765
8766
8767
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8762

class Scale < Struct.new(
  :value,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

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.

Returns:

  • (Float)


8762
8763
8764
8765
8766
8767
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 8762

class Scale < Struct.new(
  :value,
  :unit)
  SENSITIVE = []
  include Aws::Structure
end