Struct aws_sdk_comprehend::model::TopicsDetectionJobFilter [−][src]
#[non_exhaustive]pub struct TopicsDetectionJobFilter {
pub job_name: Option<String>,
pub job_status: Option<JobStatus>,
pub submit_time_before: Option<DateTime>,
pub submit_time_after: Option<DateTime>,
}Expand description
Provides information for filtering topic detection jobs. For more information, see .
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.job_name: Option<String>job_status: Option<JobStatus>Filters the list of topic detection jobs based on job status. Returns only jobs with the specified status.
submit_time_before: Option<DateTime>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.
submit_time_after: Option<DateTime>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.
Implementations
Filters the list of topic detection jobs based on job status. Returns only jobs with the specified status.
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.
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.
Creates a new builder-style object to manufacture TopicsDetectionJobFilter
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for TopicsDetectionJobFilter
impl Send for TopicsDetectionJobFilter
impl Sync for TopicsDetectionJobFilter
impl Unpin for TopicsDetectionJobFilter
impl UnwindSafe for TopicsDetectionJobFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
