Get Ml Task Run
glue_get_ml_task_run | R Documentation |
Gets details for a specific task run on a machine learning transform¶
Description¶
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 get_ml_task_run
with the TaskRunID
and its parent transform's TransformID
.
Usage¶
Arguments¶
TransformId
[required] The unique identifier of the machine learning transform.
TaskRunId
[required] The unique identifier of the task run.
Value¶
A list with the following syntax:
list(
TransformId = "string",
TaskRunId = "string",
Status = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT",
LogGroupName = "string",
Properties = list(
TaskType = "EVALUATION"|"LABELING_SET_GENERATION"|"IMPORT_LABELS"|"EXPORT_LABELS"|"FIND_MATCHES",
ImportLabelsTaskRunProperties = list(
InputS3Path = "string",
Replace = TRUE|FALSE
),
ExportLabelsTaskRunProperties = list(
OutputS3Path = "string"
),
LabelingSetGenerationTaskRunProperties = list(
OutputS3Path = "string"
),
FindMatchesTaskRunProperties = list(
JobId = "string",
JobName = "string",
JobRunId = "string"
)
),
ErrorString = "string",
StartedOn = as.POSIXct(
"2015-01-01"
),
LastModifiedOn = as.POSIXct(
"2015-01-01"
),
CompletedOn = as.POSIXct(
"2015-01-01"
),
ExecutionTime = 123
)