Class: Aws::EC2::Types::DiskInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DiskInfo
- Defined in:
- gems/aws-sdk-ec2/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.
31104 31105 31106 31107 31108 31109 31110 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 31104 class DiskInfo < Struct.new( :size_in_gb, :count, :type) SENSITIVE = [] include Aws::Structure end |