Module Values_2.GetJobRunsRequestSource

Retrieves metadata for all runs of a given job definition. GetJobRuns returns the job runs in chronological order, with the newest jobs returned first.

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

    The name of the job definition for which to retrieve all job runs.

    *)
  2. nextToken : Values_0.GenericString.t option;
    (*

    A continuation token, if this is a continuation call.

    *)
  3. maxResults : OrchestrationPageSize200.t option;
    (*

    The maximum size of the response.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> jobName:Values_0.NameString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of OrchestrationPageSize200.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