Module Values_2.GetJobRunRequestSource

Retrieves the metadata for a given job run. Job run history is accessible for 365 days for your workflow and job run.

Sourcetype nonrec t = {
  1. jobName : Values_0.NameString.t;
    (*

    Name of the job definition being run.

    *)
  2. runId : Values_0.IdString.t;
    (*

    The ID of the job run.

    *)
  3. predecessorsIncluded : Values_0.BooleanValue.t option;
    (*

    True if a list of predecessor runs should be returned.

    *)
}
Sourceval context_ : string
Sourceval make : ?predecessorsIncluded:??? -> jobName:Values_0.NameString.t -> runId:Values_0.IdString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.BooleanValue.t | `String of Values_0.NameString.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