Module Values.ErrorInfoSource

Provides details in the event of a failed flow, including the failure count and the related error messages.

Sourcetype nonrec t = {
  1. putFailuresCount : Long.t option;
    (*

    Specifies the failure count for the attempted flow.

    *)
  2. executionMessage : ExecutionMessage.t option;
    (*

    Specifies the error message that appears if a flow fails.

    *)
}
Sourceval make : ?putFailuresCount:??? -> ?executionMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of ExecutionMessage.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