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.
      8710 8711 8712 8713 8714 8715  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 8710 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.
      8710 8711 8712 8713 8714 8715  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 8710 class Scale < Struct.new( :value, :unit) SENSITIVE = [] include Aws::Structure end  |