Class: Aws::Lightsail::Types::AttachedDisk

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lightsail/types.rb

Overview

Describes a block storage disk that is attached to an instance, and is included in an automatic snapshot.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#pathString

The path of the disk (‘/dev/xvdf`).

Returns:

  • (String)


847
848
849
850
851
852
# File 'lib/aws-sdk-lightsail/types.rb', line 847

class AttachedDisk < Struct.new(
  :path,
  :size_in_gb)
  SENSITIVE = []
  include Aws::Structure
end

#size_in_gbInteger

The size of the disk in GB.

Returns:

  • (Integer)


847
848
849
850
851
852
# File 'lib/aws-sdk-lightsail/types.rb', line 847

class AttachedDisk < Struct.new(
  :path,
  :size_in_gb)
  SENSITIVE = []
  include Aws::Structure
end