Module Values.StepStatusSource

The execution status details of the cluster step.

Sourcetype nonrec t = {
  1. state : StepState.t option;
    (*

    The execution state of the cluster step.

    *)
  2. stateChangeReason : StepStateChangeReason.t option;
    (*

    The reason for the step execution status change.

    *)
  3. failureDetails : FailureDetails.t option;
    (*

    The details for the step failure including reason, message, and log file path where the root cause was identified.

    *)
  4. timeline : StepTimeline.t option;
    (*

    The timeline of the cluster step status over time.

    *)
}
Sourceval make : ?state:??? -> ?stateChangeReason:??? -> ?failureDetails:??? -> ?timeline:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.t ]) 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