Module Values_0.CancelMLTaskRunResponseSource

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 option;
    (*

    The unique identifier of the machine learning transform.

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

    The unique identifier for the task run.

    *)
  3. status : TaskStatusType.t option;
    (*

    The status for this run.

    *)
}
Sourcetype nonrec error = [
  1. | `EntityNotFoundException of EntityNotFoundException.t
  2. | `InternalServiceException of InternalServiceException.t
  3. | `InvalidInputException of InvalidInputException.t
  4. | `OperationTimeoutException of OperationTimeoutException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?transformId:??? -> ?taskRunId:??? -> ?status:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `EntityNotFoundException of EntityNotFoundException.t | `InternalServiceException of InternalServiceException.t | `InvalidInputException of InvalidInputException.t | `OperationTimeoutException of OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `EntityNotFoundException of EntityNotFoundException.t | `InternalServiceException of InternalServiceException.t | `InvalidInputException of InvalidInputException.t | `OperationTimeoutException of OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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