Class: Aws::Comprehend::Types::ListDocumentClassificationJobsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::ListDocumentClassificationJobsRequest
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Note:
When making an API call, you may pass ListDocumentClassificationJobsRequest data as a hash:
{
filter: {
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,
},
next_token: "String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filter ⇒ Types::DocumentClassificationJobFilter
Filters the jobs that are returned.
-
#max_results ⇒ Integer
The maximum number of results to return in each page.
-
#next_token ⇒ String
Identifies the next page of results to return.
Instance Attribute Details
#filter ⇒ Types::DocumentClassificationJobFilter
Filters the jobs that are returned. You can filter jobs on their names, status, or the date and time that they were submitted. You can only set one filter at a time.
4265 4266 4267 4268 4269 4270 4271 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4265 class ListDocumentClassificationJobsRequest < Struct.new( :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in each page. The default is 100.
4265 4266 4267 4268 4269 4270 4271 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4265 class ListDocumentClassificationJobsRequest < Struct.new( :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Identifies the next page of results to return.
4265 4266 4267 4268 4269 4270 4271 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 4265 class ListDocumentClassificationJobsRequest < Struct.new( :filter, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |