Class: Aws::PCS::Types::ScalingConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::PCS::Types::ScalingConfiguration
 
- Defined in:
- gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb
Overview
Specifies the boundaries of the compute node group auto scaling.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #max_instance_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The upper bound of the number of instances allowed in the compute fleet. 
- 
  
    
      #min_instance_count  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The lower bound of the number of instances allowed in the compute fleet. 
Instance Attribute Details
#max_instance_count ⇒ Integer
The upper bound of the number of instances allowed in the compute fleet.
| 1676 1677 1678 1679 1680 1681 | # File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 1676 class ScalingConfiguration < Struct.new( :min_instance_count, :max_instance_count) SENSITIVE = [] include Aws::Structure end | 
#min_instance_count ⇒ Integer
The lower bound of the number of instances allowed in the compute fleet.
| 1676 1677 1678 1679 1680 1681 | # File 'gems/aws-sdk-pcs/lib/aws-sdk-pcs/types.rb', line 1676 class ScalingConfiguration < Struct.new( :min_instance_count, :max_instance_count) SENSITIVE = [] include Aws::Structure end |