Class: Aws::Comprehend::Types::TopicsDetectionJobFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::TopicsDetectionJobFilter
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-comprehend/types.rb
Overview
Provides information for filtering topic detection jobs. For more information, see .
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
- #job_name ⇒ String
-
#job_status ⇒ String
Filters the list of topic detection 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
8407 8408 8409 8410 8411 8412 8413 8414 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8407 class TopicsDetectionJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |
#job_status ⇒ String
Filters the list of topic detection jobs based on job status. Returns only jobs with the specified status.
8407 8408 8409 8410 8411 8412 8413 8414 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8407 class TopicsDetectionJobFilter < 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. Only returns jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.
8407 8408 8409 8410 8411 8412 8413 8414 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8407 class TopicsDetectionJobFilter < 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. Only returns jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.
8407 8408 8409 8410 8411 8412 8413 8414 |
# File 'lib/aws-sdk-comprehend/types.rb', line 8407 class TopicsDetectionJobFilter < Struct.new( :job_name, :job_status, :submit_time_before, :submit_time_after) SENSITIVE = [] include Aws::Structure end |