Class: Aws::ComputeOptimizer::Types::AutoScalingGroupConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ComputeOptimizer::Types::AutoScalingGroupConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-computeoptimizer/types.rb
 
Overview
Describes the configuration of an Auto Scaling group.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #desired_capacity  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The desired capacity, or number of instances, for the Auto Scaling group.
 - 
  
    
      #instance_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The instance type for the Auto Scaling group.
 - 
  
    
      #max_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum size, or maximum number of instances, for the Auto Scaling group.
 - 
  
    
      #min_size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum size, or minimum number of instances, for the Auto Scaling group.
 
Instance Attribute Details
#desired_capacity ⇒ Integer
The desired capacity, or number of instances, for the Auto Scaling group.
      84 85 86 87 88 89 90 91  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 84 class AutoScalingGroupConfiguration < Struct.new( :desired_capacity, :min_size, :max_size, :instance_type) SENSITIVE = [] include Aws::Structure end  | 
  
#instance_type ⇒ String
The instance type for the Auto Scaling group.
      84 85 86 87 88 89 90 91  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 84 class AutoScalingGroupConfiguration < Struct.new( :desired_capacity, :min_size, :max_size, :instance_type) SENSITIVE = [] include Aws::Structure end  | 
  
#max_size ⇒ Integer
The maximum size, or maximum number of instances, for the Auto Scaling group.
      84 85 86 87 88 89 90 91  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 84 class AutoScalingGroupConfiguration < Struct.new( :desired_capacity, :min_size, :max_size, :instance_type) SENSITIVE = [] include Aws::Structure end  | 
  
#min_size ⇒ Integer
The minimum size, or minimum number of instances, for the Auto Scaling group.
      84 85 86 87 88 89 90 91  | 
    
      # File 'lib/aws-sdk-computeoptimizer/types.rb', line 84 class AutoScalingGroupConfiguration < Struct.new( :desired_capacity, :min_size, :max_size, :instance_type) SENSITIVE = [] include Aws::Structure end  |