Class: Aws::EC2::Types::InstanceStorageInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::InstanceStorageInfo
- Defined in:
- gems/aws-sdk-ec2/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.
42884 42885 42886 42887 42888 42889 42890 42891 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42884 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.
42884 42885 42886 42887 42888 42889 42890 42891 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42884 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.
42884 42885 42886 42887 42888 42889 42890 42891 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42884 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.
42884 42885 42886 42887 42888 42889 42890 42891 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 42884 class InstanceStorageInfo < Struct.new( :total_size_in_gb, :disks, :nvme_support, :encryption_support) SENSITIVE = [] include Aws::Structure end |