Class: Aws::Comprehend::Types::DocumentClassificationJobFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DocumentClassificationJobFilter
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
When making an API call, you may pass DocumentClassificationJobFilter data as a hash:
{
job_name: "JobName",
job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED, FAILED, STOP_REQUESTED, STOPPED
submit_time_before: Time.now,
submit_time_after: Time.now,
}
Provides information for filtering a list of document classification jobs. For more information, see the operation. You can provide only one filter parameter in each request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
Filters on the name of the job.
-
#job_status ⇒ String
Filters the list based on job status.
-
#submit_time_after ⇒ Time
Filters the list of jobs based on the time that the job was submitted for processing.
-
#submit_time_before ⇒ Time
Filters the list of jobs based on the time that the job was submitted for processing.
Instance Attribute Details
#job_name ⇒ String
Filters on the name of the job.
2060 2061 2062 2063 2064 2065 2066 2067 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2060 class DocumentClassificationJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#job_status ⇒ String
Filters the list based on job status. Returns only jobs with the specified status.
2060 2061 2062 2063 2064 2065 2066 2067 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2060 class DocumentClassificationJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#submit_time_after ⇒ Time
Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.
2060 2061 2062 2063 2064 2065 2066 2067 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2060 class DocumentClassificationJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#submit_time_before ⇒ Time
Filters the list of jobs based on the time that the job was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.
2060 2061 2062 2063 2064 2065 2066 2067 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 2060 class DocumentClassificationJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |