Class: Aws::EC2::Types::MemoryMiBRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::MemoryMiBRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
The minimum and maximum amount of memory, in MiB.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #max  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum amount of memory, in MiB.
 - 
  
    
      #min  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum amount of memory, in MiB.
 
Instance Attribute Details
#max ⇒ Integer
The maximum amount of memory, in MiB. To specify no maximum limit, omit this parameter.
      50279 50280 50281 50282 50283 50284  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 50279 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  | 
  
#min ⇒ Integer
The minimum amount of memory, in MiB. To specify no minimum limit, specify ‘0`.
      50279 50280 50281 50282 50283 50284  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 50279 class MemoryMiBRequest < Struct.new( :min, :max) SENSITIVE = [] include Aws::Structure end  |