Module Values.FailureDetailsSource

The details of the step failure. The service attempts to detect the root cause for many common failures.

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

    The reason for the step failure. In the case where the service cannot successfully determine the root cause of the failure, it returns "Unknown Error" as a reason.

    *)
  2. message : String_.t option;
    (*

    The descriptive message including the error the Amazon EMR service has identified as the cause of step failure. This is text from an error log that describes the root cause of the failure.

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

    The path to the log file where the step failure root cause was originally recorded.

    *)
}
Sourceval make : ?reason:??? -> ?message:??? -> ?logFile:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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