Class: Aws::Finspace::Types::Volume

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb

Overview

The structure that consists of name and type of volume.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#volume_nameString

A unique identifier for the volume.

Returns:

  • (String)


5577
5578
5579
5580
5581
5582
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 5577

class Volume < Struct.new(
  :volume_name,
  :volume_type)
  SENSITIVE = []
  include Aws::Structure
end

#volume_typeString

The type of file system volume. Currently, FinSpace only supports NAS_1 volume type.

Returns:

  • (String)


5577
5578
5579
5580
5581
5582
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 5577

class Volume < Struct.new(
  :volume_name,
  :volume_type)
  SENSITIVE = []
  include Aws::Structure
end