Gets a list of runs for a machine learning transform. Machine learning
task runs are asynchronous tasks that AWS Glue runs on your behalf as
part of various machine learning workflows. You can get a sortable,
filterable list of machine learning task runs by calling GetMLTaskRuns
with their parent transform\'s TransformID
and other optional
parameters as documented in this section.
glue_get_ml_task_runs(TransformId, NextToken, MaxResults, Filter, Sort)
[required] The unique identifier of the machine learning transform.
A token for pagination of the results. The default is empty.
The maximum number of results to return.
The filter criteria, in the TaskRunFilterCriteria
structure, for the
task run.
The sorting criteria, in the TaskRunSortCriteria
structure, for the
task run.
svc$get_ml_task_runs( TransformId = "string", NextToken = "string", MaxResults = 123, Filter = list( TaskRunType = "EVALUATION"|"LABELING_SET_GENERATION"|"IMPORT_LABELS"|"EXPORT_LABELS"|"FIND_MATCHES", Status = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT", StartedBefore = as.POSIXct( "2015-01-01" ), StartedAfter = as.POSIXct( "2015-01-01" ) ), Sort = list( Column = "TASK_RUN_TYPE"|"STATUS"|"STARTED", SortDirection = "DESCENDING"|"ASCENDING" ) )
This operation returns a list of historic runs and must be paginated.