Class: Aws::EC2::Types::InstanceStorageInfo

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#disksArray<Types::DiskInfo>

Describes the disks that are available for the instance type.

Returns:



41571
41572
41573
41574
41575
41576
41577
41578
# File 'lib/aws-sdk-ec2/types.rb', line 41571

class InstanceStorageInfo < Struct.new(
  :total_size_in_gb,
  :disks,
  :nvme_support,
  :encryption_support)
  SENSITIVE = []
  include Aws::Structure
end

#encryption_supportString

Indicates whether data is encrypted at rest.

Returns:

  • (String)


41571
41572
41573
41574
41575
41576
41577
41578
# File 'lib/aws-sdk-ec2/types.rb', line 41571

class InstanceStorageInfo < Struct.new(
  :total_size_in_gb,
  :disks,
  :nvme_support,
  :encryption_support)
  SENSITIVE = []
  include Aws::Structure
end

#nvme_supportString

Indicates whether non-volatile memory express (NVMe) is supported.

Returns:

  • (String)


41571
41572
41573
41574
41575
41576
41577
41578
# File 'lib/aws-sdk-ec2/types.rb', line 41571

class InstanceStorageInfo < Struct.new(
  :total_size_in_gb,
  :disks,
  :nvme_support,
  :encryption_support)
  SENSITIVE = []
  include Aws::Structure
end

#total_size_in_gbInteger

The total size of the disks, in GB.

Returns:

  • (Integer)


41571
41572
41573
41574
41575
41576
41577
41578
# File 'lib/aws-sdk-ec2/types.rb', line 41571

class InstanceStorageInfo < Struct.new(
  :total_size_in_gb,
  :disks,
  :nvme_support,
  :encryption_support)
  SENSITIVE = []
  include Aws::Structure
end