Gets a list of runs for a machine learning transform
Source:R/glue_operations.R
glue_get_ml_task_runs.RdGets a list of runs for 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 get a sortable, filterable list of machine learning task runs by calling get_ml_task_runs with their parent transform's TransformID and other optional parameters as documented in this section.
See https://www.paws-r-sdk.com/docs/glue_get_ml_task_runs/ for full documentation.
Usage
glue_get_ml_task_runs(
TransformId,
NextToken = NULL,
MaxResults = NULL,
Filter = NULL,
Sort = NULL
)Arguments
- TransformId
[required] The unique identifier of the machine learning transform.
- NextToken
A token for pagination of the results. The default is empty.
- MaxResults
The maximum number of results to return.
- Filter
The filter criteria, in the
TaskRunFilterCriteriastructure, for the task run.- Sort
The sorting criteria, in the
TaskRunSortCriteriastructure, for the task run.