Module Values.ExecutionDetailsSource

Describes the details of the flow run, including the timestamp, status, and message.

Sourcetype nonrec t = {
  1. mostRecentExecutionMessage : MostRecentExecutionMessage.t option;
    (*

    Describes the details of the most recent flow run.

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

    Specifies the time of the most recent flow run.

    *)
  3. mostRecentExecutionStatus : ExecutionStatus.t option;
    (*

    Specifies the status of the most recent flow run.

    *)
}
Sourceval make : ?mostRecentExecutionMessage:??? -> ?mostRecentExecutionTime:??? -> ?mostRecentExecutionStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of MostRecentExecutionMessage.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