Module Values.StepExecutionStatusDetailSource

The execution state of a step.

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

    The state of the step.

    *)
  2. creationDateTime : Date.t option;
    (*

    The creation date and time of the step.

    *)
  3. startDateTime : Date.t option;
    (*

    The start date and time of the step.

    *)
  4. endDateTime : Date.t option;
    (*

    The completion date and time of the step.

    *)
  5. lastStateChangeReason : XmlString.t option;
    (*

    A description of the step's current state.

    *)
}
Sourceval make : ?state:??? -> ?creationDateTime:??? -> ?startDateTime:??? -> ?endDateTime:??? -> ?lastStateChangeReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of XmlString.t | `Timestamp of Date.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