Class: Aws::Lightsail::Types::DiskInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::DiskInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Describes a disk.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#is_system_disk ⇒ Boolean
A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).
-
#name ⇒ String
The disk name.
-
#path ⇒ String
The disk path.
-
#size_in_gb ⇒ Integer
The size of the disk in GB (‘32`).
Instance Attribute Details
#is_system_disk ⇒ Boolean
A Boolean value indicating whether this disk is a system disk (has an operating system loaded on it).
5710 5711 5712 5713 5714 5715 5716 5717 |
# File 'lib/aws-sdk-lightsail/types.rb', line 5710 class DiskInfo < Struct.new( :name, :path, :size_in_gb, :is_system_disk) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The disk name.
5710 5711 5712 5713 5714 5715 5716 5717 |
# File 'lib/aws-sdk-lightsail/types.rb', line 5710 class DiskInfo < Struct.new( :name, :path, :size_in_gb, :is_system_disk) SENSITIVE = [] include Aws::Structure end |