Module Values.StepFailedDetailsSource

Details about a step that failed.

Sourcetype nonrec t = {
  1. error : EventError.t option;
    (*

    Details about the step failure.

    *)
  2. retryDetails : RetryDetails.t option;
    (*

    Information about retry attempts for this step operation.

    *)
}
Sourceval make : ?error:??? -> ?retryDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Boolean of Truncated.t | `Integer of AttemptCount.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.t ]) list ]) 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