Struct aws_sdk_comprehend::model::EventsDetectionJobFilter [−][src]
#[non_exhaustive]pub struct EventsDetectionJobFilter {
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 a list of event detection jobs.
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>Filters on the name of the events detection job.
job_status: Option<JobStatus>Filters the list of 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. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.
submit_time_after: Option<DateTime>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.
Implementations
Filters the list of 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. Returns only jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.
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.
Creates a new builder-style object to manufacture EventsDetectionJobFilter
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 EventsDetectionJobFilter
impl Send for EventsDetectionJobFilter
impl Sync for EventsDetectionJobFilter
impl Unpin for EventsDetectionJobFilter
impl UnwindSafe for EventsDetectionJobFilter
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
