Class: Aws::EC2::Types::VCpuCountRangeRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::VCpuCountRangeRequest
 
 
- 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. To specify no maximum limit, omit this parameter.
      67463 67464 67465 67466 67467 67468  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 67463 class VCpuCountRangeRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  | 
  
#min ⇒ Integer
The minimum number of vCPUs. To specify no minimum limit, specify ‘0`.
      67463 67464 67465 67466 67467 67468  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 67463 class VCpuCountRangeRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  |