Module Values_2.GetMLTaskRunResponseSource

Gets details for a specific task run on a machine learning transform. Machine learning task runs are asynchronous tasks that Glue runs on your behalf as part of various machine learning workflows. You can check the stats of any task run by calling GetMLTaskRun with the TaskRunID and its parent transform's TransformID.

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

    The unique identifier of the task run.

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

    The unique run identifier associated with this run.

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

    The status for this task run.

    *)
  4. logGroupName : Values_0.GenericString.t option;
    (*

    The names of the log groups that are associated with the task run.

    *)
  5. properties : TaskRunProperties.t option;
    (*

    The list of properties that are associated with the task run.

    *)
  6. errorString : Values_0.GenericString.t option;
    (*

    The error strings that are associated with the task run.

    *)
  7. startedOn : Values_0.Timestamp.t option;
    (*

    The date and time when this task run started.

    *)
  8. lastModifiedOn : Values_0.Timestamp.t option;
    (*

    The date and time when this task run was last modified.

    *)
  9. completedOn : Values_0.Timestamp.t option;
    (*

    The date and time when this task run was completed.

    *)
  10. executionTime : Values_0.ExecutionTime.t option;
    (*

    The amount of time (in seconds) that the task run consumed resources.

    *)
}
Sourcetype nonrec error = [
  1. | `EntityNotFoundException of Values_0.EntityNotFoundException.t
  2. | `InternalServiceException of Values_0.InternalServiceException.t
  3. | `InvalidInputException of Values_0.InvalidInputException.t
  4. | `OperationTimeoutException of Values_0.OperationTimeoutException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?transformId:??? -> ?taskRunId:??? -> ?status:??? -> ?logGroupName:??? -> ?properties:??? -> ?errorString:??? -> ?startedOn:??? -> ?lastModifiedOn:??? -> ?completedOn:??? -> ?executionTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.OperationTimeoutException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `EntityNotFoundException of Values_0.EntityNotFoundException.t | `InternalServiceException of Values_0.InternalServiceException.t | `InvalidInputException of Values_0.InvalidInputException.t | `OperationTimeoutException of Values_0.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 | `Integer of Values_0.ExecutionTime.t | `String of Values_0.HashString.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Boolean of ReplaceBoolean.t | `String of Values_0.UriString.t ]) list ]) list | `Timestamp of Values_0.Timestamp.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