Values_2.GetMLTaskRunsRequestSourceGets 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 GetMLTaskRuns with their parent transform's TransformID and other optional parameters as documented in this section. This operation returns a list of historic runs and must be paginated.
type nonrec t = {transformId : Values_0.HashString.t;The unique identifier of the machine learning transform.
*)nextToken : PaginationToken.t option;A token for pagination of the results. The default is empty.
*)maxResults : Values_1.PageSize.t option;The maximum number of results to return.
*)filter : TaskRunFilterCriteria.t option;The filter criteria, in the TaskRunFilterCriteria structure, for the task run.
*)sort : TaskRunSortCriteria.t option;The sorting criteria, in the TaskRunSortCriteria structure, for the task run.
*)}val make :
?nextToken:??? ->
?maxResults:??? ->
?filter:??? ->
?sort:??? ->
transformId:Values_0.HashString.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of Values_1.PageSize.t
| `String of Values_0.HashString.t
| `Structure of
(string * [> `Enum of string | `Timestamp of Values_0.Timestamp.t ])
list ])
list ]