Module Values.GetJobRunRequestSource

Displays detailed information about a job run.

Sourcetype nonrec t = {
  1. applicationId : ApplicationId.t;
    (*

    The ID of the application on which the job run is submitted.

    *)
  2. jobRunId : JobRunId.t;
    (*

    The ID of the job run.

    *)
  3. attempt : AttemptNumber.t option;
    (*

    An optimal parameter that indicates the amount of attempts for the job. If not specified, this value defaults to the attempt of the latest job.

    *)
}
Sourceval context_ : string
Sourceval make : ?attempt:??? -> applicationId:ApplicationId.t -> jobRunId:JobRunId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of AttemptNumber.t | `String of ApplicationId.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