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.
| 42162 42163 42164 42165 42166 42167 42168 42169 | # File 'lib/aws-sdk-ec2/types.rb', line 42162 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.
| 42162 42163 42164 42165 42166 42167 42168 42169 | # File 'lib/aws-sdk-ec2/types.rb', line 42162 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.
| 42162 42163 42164 42165 42166 42167 42168 42169 | # File 'lib/aws-sdk-ec2/types.rb', line 42162 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.
| 42162 42163 42164 42165 42166 42167 42168 42169 | # File 'lib/aws-sdk-ec2/types.rb', line 42162 class InstanceStorageInfo < Struct.new( :total_size_in_gb, :disks, :nvme_support, :encryption_support) SENSITIVE = [] include Aws::Structure end |