Class: Aws::Lightsail::Types::AttachDiskRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::AttachDiskRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#auto_mounting ⇒ Boolean
A Boolean value used to determine the automatic mounting of a storage volume to a virtual computer.
-
#disk_name ⇒ String
The unique Lightsail disk name (
my-disk
). -
#disk_path ⇒ String
The disk path to expose to the instance (
/dev/xvdf
). -
#instance_name ⇒ String
The name of the Lightsail instance where you want to utilize the storage disk.
Instance Attribute Details
#auto_mounting ⇒ Boolean
A Boolean value used to determine the automatic mounting of a
storage volume to a virtual computer. The default value is False
.
This value only applies to Lightsail for Research resources.
705 706 707 708 709 710 711 712 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 705 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path, :auto_mounting) SENSITIVE = [] include Aws::Structure end |
#disk_name ⇒ String
The unique Lightsail disk name (my-disk
).
705 706 707 708 709 710 711 712 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 705 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path, :auto_mounting) SENSITIVE = [] include Aws::Structure end |
#disk_path ⇒ String
The disk path to expose to the instance (/dev/xvdf
).
705 706 707 708 709 710 711 712 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 705 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path, :auto_mounting) SENSITIVE = [] include Aws::Structure end |
#instance_name ⇒ String
The name of the Lightsail instance where you want to utilize the storage disk.
705 706 707 708 709 710 711 712 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 705 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path, :auto_mounting) SENSITIVE = [] include Aws::Structure end |