Module Values.KxAttachedClusterSource

The structure containing the metadata of the attached clusters.

Sourcetype nonrec t = {
  1. clusterName : KxClusterName.t option;
    (*

    A unique name for the attached cluster.

    *)
  2. clusterType : KxClusterType.t option;
    (*

    Specifies the type of cluster. The volume for TP and RDB cluster types will be used for TP logs.

    *)
  3. clusterStatus : KxClusterStatus.t option;
    (*

    The status of the attached cluster. PENDING – The cluster is pending creation. CREATING – The cluster creation process is in progress. CREATE_FAILED – The cluster creation process has failed. RUNNING – The cluster creation process is running. UPDATING – The cluster is in the process of being updated. DELETING – The cluster is in the process of being deleted. DELETED – The cluster has been deleted. DELETE_FAILED – The cluster failed to delete.

    *)
}
Sourceval make : ?clusterName:??? -> ?clusterType:??? -> ?clusterStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of KxClusterName.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