Module Values.KxSavedownStorageConfigurationSource

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.

Sourcetype nonrec t = {
  1. type_ : KxSavedownStorageType.t option;
    (*

    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.

    *)
  2. size : KxSavedownStorageSize.t option;
    (*

    The size of temporary storage in gibibytes.

    *)
  3. volumeName : KxVolumeName.t option;
    (*

    The name of the kdb volume that you want to use as writeable save-down storage for clusters.

    *)
}
Sourceval make : ?type_:??? -> ?size:??? -> ?volumeName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of KxSavedownStorageSize.t | `String of KxVolumeName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t