Class: Aws::Finspace::Types::Volume
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::Volume
- 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
-
#volume_name ⇒ String
A unique identifier for the volume.
-
#volume_type ⇒ String
The type of file system volume.
Instance Attribute Details
#volume_name ⇒ String
A unique identifier for the volume.
5602 5603 5604 5605 5606 5607 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 5602 class Volume < Struct.new( :volume_name, :volume_type) SENSITIVE = [] include Aws::Structure end |
#volume_type ⇒ String
The type of file system volume. Currently, FinSpace only supports
NAS_1
volume type.
5602 5603 5604 5605 5606 5607 |
# File 'gems/aws-sdk-finspace/lib/aws-sdk-finspace/types.rb', line 5602 class Volume < Struct.new( :volume_name, :volume_type) SENSITIVE = [] include Aws::Structure end |