Module Values.ErrorDetailSource

A tuple that provides information about an error that caused a cluster to terminate.

Sourcetype nonrec t = {
  1. errorCode : String_.t option;
    (*

    The name or code associated with the error.

    *)
  2. errorData : ErrorData.t option;
    (*

    A list of key value pairs that provides contextual information about why an error occured.

    *)
  3. errorMessage : String_.t option;
    (*

    A message that describes the error.

    *)
}
Sourceval make : ?errorCode:??? -> ?errorData:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list ] list | `String of String_.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