Module Values_2.GetMLTaskRunsRequestSource

Gets 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.

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

    The unique identifier of the machine learning transform.

    *)
  2. nextToken : PaginationToken.t option;
    (*

    A token for pagination of the results. The default is empty.

    *)
  3. maxResults : Values_1.PageSize.t option;
    (*

    The maximum number of results to return.

    *)
  4. filter : TaskRunFilterCriteria.t option;
    (*

    The filter criteria, in the TaskRunFilterCriteria structure, for the task run.

    *)
  5. sort : TaskRunSortCriteria.t option;
    (*

    The sorting criteria, in the TaskRunSortCriteria structure, for the task run.

    *)
}
Sourceval context_ : string
Sourceval make : ?nextToken:??? -> ?maxResults:??? -> ?filter:??? -> ?sort:??? -> transformId:Values_0.HashString.t -> unit -> t
Sourceval 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 ]
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