Class: Aws::EC2::Types::AcceleratorCount
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::AcceleratorCount
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of accelerators.
 - 
  
    
      #min  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum number of accelerators.
 
Instance Attribute Details
#max ⇒ Integer
The maximum number of accelerators. If this parameter is not specified, there is no maximum limit.
      28 29 30 31 32 33  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 28 class AcceleratorCount < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  | 
  
#min ⇒ Integer
The minimum number of accelerators. If this parameter is not specified, there is no minimum limit.
      28 29 30 31 32 33  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 28 class AcceleratorCount < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  |