Module Values.ClusterStatusSource

The detailed status of the cluster.

Sourcetype nonrec t = {
  1. state : ClusterState.t option;
    (*

    The current state of the cluster.

    *)
  2. stateChangeReason : ClusterStateChangeReason.t option;
    (*

    The reason for the cluster status change.

    *)
  3. timeline : ClusterTimeline.t option;
    (*

    A timeline that represents the status of a cluster over the lifetime of the cluster.

    *)
  4. errorDetails : ErrorDetailList.t option;
    (*

    A list of tuples that provides information about the errors that caused a cluster to terminate. This structure can contain up to 10 different ErrorDetail tuples.

    *)
}
Sourceval make : ?state:??? -> ?stateChangeReason:??? -> ?timeline:??? -> ?errorDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `List of [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list ] list | `String of String_.t ]) list ] list | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.t ]) list ]) 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