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)

9320
9321
9322
9323
9324
9325
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 9320

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)

9320
9321
9322
9323
9324
9325
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 9320

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