Class: Aws::Finspace::Types::KxVolume
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::KxVolume
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-finspace/types.rb
Overview
The structure that contains the metadata of the volume.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone_ids ⇒ Array<String>
The identifier of the availability zones.
-
#az_mode ⇒ String
The number of availability zones you want to assign per volume.
-
#created_timestamp ⇒ Time
The timestamp at which the volume was created in FinSpace.
-
#description ⇒ String
A description of the volume.
-
#last_modified_timestamp ⇒ Time
The last time that the volume was updated in FinSpace.
-
#status ⇒ String
The status of volume.
-
#status_reason ⇒ String
The error message when a failed state occurs.
-
#volume_name ⇒ String
A unique identifier for the volume.
-
#volume_type ⇒ String
The type of file system volume.
Instance Attribute Details
#availability_zone_ids ⇒ Array<String>
The identifier of the availability zones.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#az_mode ⇒ String
The number of availability zones you want to assign per volume. Currently, FinSpace only supports ‘SINGLE` for volumes. This places dataview in a single AZ.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#created_timestamp ⇒ Time
The timestamp at which the volume was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the volume.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#last_modified_timestamp ⇒ Time
The last time that the volume was updated in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of volume.
-
CREATING – The volume creation is in progress.
-
CREATE_FAILED – The volume creation has failed.
-
ACTIVE – The volume is active.
-
UPDATING – The volume is in the process of being updated.
-
UPDATE_FAILED – The update action failed.
-
UPDATED – The volume is successfully updated.
-
DELETING – The volume is in the process of being deleted.
-
DELETE_FAILED – The system failed to delete the volume.
-
DELETED – The volume is successfully deleted.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#status_reason ⇒ String
The error message when a failed state occurs.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#volume_name ⇒ String
A unique identifier for the volume.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |
#volume_type ⇒ String
The type of file system volume. Currently, FinSpace only supports ‘NAS_1` volume type.
4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 |
# File 'lib/aws-sdk-finspace/types.rb', line 4038 class KxVolume < Struct.new( :volume_name, :volume_type, :status, :description, :status_reason, :az_mode, :availability_zone_ids, :created_timestamp, :last_modified_timestamp) SENSITIVE = [] include Aws::Structure end |