Class: Aws::Glue::Types::TaskRunFilterCriteria
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::TaskRunFilterCriteria
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass TaskRunFilterCriteria data as a 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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#started_after ⇒ Time
Filter on task runs started after this date.
-
#started_before ⇒ Time
Filter on task runs started before this date.
-
#status ⇒ String
The current status of the task run.
-
#task_run_type ⇒ String
The type of task run.
Instance Attribute Details
#started_after ⇒ Time
Filter on task runs started after this date.
23381 23382 23383 23384 23385 23386 23387 23388 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23381 class TaskRunFilterCriteria < Struct.new( :task_run_type, :status, :started_before, :started_after) SENSITIVE = [] include Aws::Structure end |
#started_before ⇒ Time
Filter on task runs started before this date.
23381 23382 23383 23384 23385 23386 23387 23388 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23381 class TaskRunFilterCriteria < Struct.new( :task_run_type, :status, :started_before, :started_after) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the task run.
23381 23382 23383 23384 23385 23386 23387 23388 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23381 class TaskRunFilterCriteria < Struct.new( :task_run_type, :status, :started_before, :started_after) SENSITIVE = [] include Aws::Structure end |
#task_run_type ⇒ String
The type of task run.
23381 23382 23383 23384 23385 23386 23387 23388 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 23381 class TaskRunFilterCriteria < Struct.new( :task_run_type, :status, :started_before, :started_after) SENSITIVE = [] include Aws::Structure end |