Module Values.StepTimelineSource

The timeline of the cluster step lifecycle.

Sourcetype nonrec t = {
  1. creationDateTime : Date.t option;
    (*

    The date and time when the cluster step was created.

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

    The date and time when the cluster step execution started.

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

    The date and time when the cluster step execution completed or failed.

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