Module Values.WorkflowRunSummarySource

Information about a workflow run.

Sourcetype nonrec t = {
  1. id : Uuid.t option;
    (*

    The system-generated unique ID of the workflow run.

    *)
  2. workflowId : Uuid.t option;
    (*

    The system-generated unique ID of the workflow.

    *)
  3. workflowName : String_.t option;
    (*

    The name of the workflow.

    *)
  4. status : WorkflowRunStatus.t option;
    (*

    The status of the workflow run.

    *)
  5. statusReasons : WorkflowRunStatusReasons.t option;
    (*

    The reasons for the workflow run status.

    *)
  6. startTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the workflow run began, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.

    *)
  7. endTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the workflow run ended, in coordinated universal time (UTC) timestamp format as specified in RFC 3339

    *)
  8. lastUpdatedTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the workflow was last updated, in coordinated universal time (UTC) timestamp format as specified in RFC 3339

    *)
}
Sourceval make : ?id:??? -> ?workflowId:??? -> ?workflowName:??? -> ?status:??? -> ?statusReasons:??? -> ?startTime:??? -> ?endTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of 'a list ] list | `String of Uuid.t | `Timestamp of SyntheticTimestamp_date_time.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