Module Values.StepDetailsSource

Details about a step operation.

Sourcetype nonrec t = {
  1. attempt : AttemptCount.t option;
    (*

    The current attempt number for this step.

    *)
  2. nextAttemptTimestamp : ExecutionTimestamp.t option;
    (*

    The date and time when the next attempt is scheduled, in ISO-8601 format (YYYY-MM-DDThh:mm:ss.sTZD). Only populated when the step is in a pending state.

    *)
  3. result : OperationPayload.t option;
    (*

    The JSON response payload from the step operation.

    *)
  4. error : ErrorObject.t option;
    (*

    Details about the step failure.

    *)
}
Sourceval make : ?attempt:??? -> ?nextAttemptTimestamp:??? -> ?result:??? -> ?error:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AttemptCount.t | `String of OperationPayload.t | `Structure of (string * [> `List of [> `String of StackTraceEntry.t ] list | `String of ErrorMessage.t ]) list | `Timestamp of ExecutionTimestamp.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