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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


5602
5603
5604
5605
5606
5607
# File 'lib/aws-sdk-finspace/types.rb', line 5602

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)


5602
5603
5604
5605
5606
5607
# File 'lib/aws-sdk-finspace/types.rb', line 5602

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