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
Note:
When making an API call, you may pass AttachDiskRequest data as a hash:
{
disk_name: "ResourceName", # required
instance_name: "ResourceName", # required
disk_path: "NonEmptyString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#disk_name ⇒ String
The unique Lightsail disk name (e.g.,
my-disk
). -
#disk_path ⇒ String
The disk path to expose to the instance (e.g.,
/dev/xvdf
). -
#instance_name ⇒ String
The name of the Lightsail instance where you want to utilize the storage disk.
Instance Attribute Details
#disk_name ⇒ String
The unique Lightsail disk name (e.g., my-disk
).
716 717 718 719 720 721 722 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 716 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path) SENSITIVE = [] include Aws::Structure end |
#disk_path ⇒ String
The disk path to expose to the instance (e.g., /dev/xvdf
).
716 717 718 719 720 721 722 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 716 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path) SENSITIVE = [] include Aws::Structure end |
#instance_name ⇒ String
The name of the Lightsail instance where you want to utilize the storage disk.
716 717 718 719 720 721 722 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 716 class AttachDiskRequest < Struct.new( :disk_name, :instance_name, :disk_path) SENSITIVE = [] include Aws::Structure end |