Class: Aws::Finspace::Types::KxSavedownStorageConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Finspace::Types::KxSavedownStorageConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-finspace/types.rb
Overview
The size and type of temporary storage that is used to hold data during the savedown process. All the data written to this storage space is lost when the cluster node is restarted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#size ⇒ Integer
The size of temporary storage in gibibytes.
-
#type ⇒ String
The type of writeable storage space for temporarily storing your savedown data.
-
#volume_name ⇒ String
The name of the kdb volume that you want to use as writeable save-down storage for clusters.
Instance Attribute Details
#size ⇒ Integer
The size of temporary storage in gibibytes.
3799 3800 3801 3802 3803 3804 3805 |
# File 'lib/aws-sdk-finspace/types.rb', line 3799 class KxSavedownStorageConfiguration < Struct.new( :type, :size, :volume_name) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of writeable storage space for temporarily storing your savedown data. The valid values are:
-
SDS01 – This type represents 3000 IOPS and io2 ebs volume type.
^
3799 3800 3801 3802 3803 3804 3805 |
# File 'lib/aws-sdk-finspace/types.rb', line 3799 class KxSavedownStorageConfiguration < Struct.new( :type, :size, :volume_name) SENSITIVE = [] include Aws::Structure end |
#volume_name ⇒ String
The name of the kdb volume that you want to use as writeable save-down storage for clusters.
3799 3800 3801 3802 3803 3804 3805 |
# File 'lib/aws-sdk-finspace/types.rb', line 3799 class KxSavedownStorageConfiguration < Struct.new( :type, :size, :volume_name) SENSITIVE = [] include Aws::Structure end |