You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::GetMLTaskRunsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing GetMLTaskRunsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  transform_id: "HashString", # required
  next_token: "PaginationToken",
  max_results: 1,
  filter: {
    task_run_type: "EVALUATION", # accepts EVALUATION, LABELING_SET_GENERATION, IMPORT_LABELS, EXPORT_LABELS, FIND_MATCHES
    status: "STARTING", # accepts STARTING, RUNNING, STOPPING, STOPPED, SUCCEEDED, FAILED, TIMEOUT
    started_before: Time.now,
    started_after: Time.now,
  },
  sort: {
    column: "TASK_RUN_TYPE", # required, accepts TASK_RUN_TYPE, STATUS, STARTED
    sort_direction: "DESCENDING", # required, accepts DESCENDING, ASCENDING
  },
}

Instance Attribute Summary collapse

Instance Attribute Details

#filterTypes::TaskRunFilterCriteria

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

Returns:

#max_resultsInteger

The maximum number of results to return.

Returns:

  • (Integer)

    The maximum number of results to return.

#next_tokenString

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

Returns:

  • (String)

    A token for pagination of the results.

#sortTypes::TaskRunSortCriteria

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

Returns:

#transform_idString

The unique identifier of the machine learning transform.

Returns:

  • (String)

    The unique identifier of the machine learning transform.