Class: Aws::EC2::Types::VCpuCountRange
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::VCpuCountRange
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
The minimum and maximum number of vCPUs.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of vCPUs.
 - 
  
    
      #min  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum number of vCPUs.
 
Instance Attribute Details
#max ⇒ Integer
The maximum number of vCPUs. If this parameter is not specified, there is no maximum limit.
      71391 71392 71393 71394 71395 71396  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 71391 class VCpuCountRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  | 
  
#min ⇒ Integer
The minimum number of vCPUs. If the value is ‘0`, there is no minimum limit.
      71391 71392 71393 71394 71395 71396  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 71391 class VCpuCountRange < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  |