Values.CancelJobRunRequestSourceCancels a job run.
type nonrec t = {applicationId : ApplicationId.t;The ID of the application on which the job run will be canceled.
*)jobRunId : JobRunId.t;The ID of the job run to cancel.
*)shutdownGracePeriodInSeconds : ShutdownGracePeriodInSeconds.t option;The duration in seconds to wait before forcefully terminating the job after cancellation is requested.
*)}val make :
?shutdownGracePeriodInSeconds:??? ->
applicationId:ApplicationId.t ->
jobRunId:JobRunId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of ShutdownGracePeriodInSeconds.t
| `String of ApplicationId.t ])
list ]