Module Values_0.CancelMLTaskRunRequestSource

Cancels (stops) a task run. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can cancel a machine learning task run at any time by calling CancelMLTaskRun with a task run's parent transform's TransformID and the task run's TaskRunId.

Sourcetype nonrec t = {
  1. transformId : HashString.t;
    (*

    The unique identifier of the machine learning transform.

    *)
  2. taskRunId : HashString.t;
    (*

    A unique identifier for the task run.

    *)
}
Sourceval context_ : string
Sourceval make : transformId:HashString.t -> taskRunId:HashString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HashString.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