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

Class: Aws::Glue::Types::TaskRunFilterCriteria

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

Overview

Note:

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

{
  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,
}

The criteria that are used to filter the task runs for the machine learning transform.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#started_afterTime

Filter on task runs started after this date.

Returns:

  • (Time)

    Filter on task runs started after this date.

#started_beforeTime

Filter on task runs started before this date.

Returns:

  • (Time)

    Filter on task runs started before this date.

#statusString

The current status of the task run.

Possible values:

  • STARTING
  • RUNNING
  • STOPPING
  • STOPPED
  • SUCCEEDED
  • FAILED
  • TIMEOUT

Returns:

  • (String)

    The current status of the task run.

#task_run_typeString

The type of task run.

Possible values:

  • EVALUATION
  • LABELING_SET_GENERATION
  • IMPORT_LABELS
  • EXPORT_LABELS
  • FIND_MATCHES

Returns:

  • (String)

    The type of task run.