Class: Aws::EC2::Types::DiskInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DiskInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Describes a disk.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#count ⇒ Integer
The number of disks with this configuration.
-
#size_in_gb ⇒ Integer
The size of the disk in GB.
-
#type ⇒ String
The type of disk.
Instance Attribute Details
#count ⇒ Integer
The number of disks with this configuration.
32282 32283 32284 32285 32286 32287 32288 |
# File 'lib/aws-sdk-ec2/types.rb', line 32282 class DiskInfo < Struct.new( :size_in_gb, :count, :type) SENSITIVE = [] include Aws::Structure end |