Module Values.JobFailureSource

If this job failed, this element indicates why the job failed.

Sourcetype nonrec t = {
  1. failureCode : JobFailureCode.t option;
    (*

    The failure code, if any, for the specified job.

    *)
  2. failureReason : JobFailureReason.t option;
    (*

    The failure reason, if any, for the specified job.

    *)
}
Sourceval make : ?failureCode:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of JobFailureCode.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