Class: Aws::EC2::Types::InstanceStorageInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::InstanceStorageInfo
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the instance store features that are supported by the instance type.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #disks  ⇒ Array<Types::DiskInfo> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Describes the disks that are available for the instance type.
 - 
  
    
      #encryption_support  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether data is encrypted at rest.
 - 
  
    
      #nvme_support  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether non-volatile memory express (NVMe) is supported.
 - 
  
    
      #total_size_in_gb  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The total size of the disks, in GB.
 
Instance Attribute Details
#disks ⇒ Array<Types::DiskInfo>
Describes the disks that are available for the instance type.
      44901 44902 44903 44904 44905 44906 44907 44908  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44901 class InstanceStorageInfo < Struct.new( :total_size_in_gb, :disks, :nvme_support, :encryption_support) SENSITIVE = [] include Aws::Structure end  | 
  
#encryption_support ⇒ String
Indicates whether data is encrypted at rest.
      44901 44902 44903 44904 44905 44906 44907 44908  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44901 class InstanceStorageInfo < Struct.new( :total_size_in_gb, :disks, :nvme_support, :encryption_support) SENSITIVE = [] include Aws::Structure end  | 
  
#nvme_support ⇒ String
Indicates whether non-volatile memory express (NVMe) is supported.
      44901 44902 44903 44904 44905 44906 44907 44908  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44901 class InstanceStorageInfo < Struct.new( :total_size_in_gb, :disks, :nvme_support, :encryption_support) SENSITIVE = [] include Aws::Structure end  | 
  
#total_size_in_gb ⇒ Integer
The total size of the disks, in GB.
      44901 44902 44903 44904 44905 44906 44907 44908  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 44901 class InstanceStorageInfo < Struct.new( :total_size_in_gb, :disks, :nvme_support, :encryption_support) SENSITIVE = [] include Aws::Structure end  |