Class: Aws::Comprehend::Types::DominantLanguageDetectionJobFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::DominantLanguageDetectionJobFilter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Provides information for filtering a list of dominant language detection jobs. For more information, see the operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#job_name ⇒ String
Filters on the name of the job.
-
#job_status ⇒ String
Filters the list of jobs 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.
3371 3372 3373 3374 3375 3376 3377 3378 |
# File 'lib/aws-sdk-comprehend/types.rb', line 3371 class DominantLanguageDetectionJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#job_status ⇒ String
Filters the list of jobs based on job status. Returns only jobs with the specified status.
3371 3372 3373 3374 3375 3376 3377 3378 |
# File 'lib/aws-sdk-comprehend/types.rb', line 3371 class DominantLanguageDetectionJobFilter < 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.
3371 3372 3373 3374 3375 3376 3377 3378 |
# File 'lib/aws-sdk-comprehend/types.rb', line 3371 class DominantLanguageDetectionJobFilter < 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.
3371 3372 3373 3374 3375 3376 3377 3378 |
# File 'lib/aws-sdk-comprehend/types.rb', line 3371 class DominantLanguageDetectionJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |