Struct aws_sdk_comprehend::model::DocumentClassificationJobFilter [−][src]
#[non_exhaustive]pub struct DocumentClassificationJobFilter {
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 document classification jobs. For more information, see the operation. You can provide only one filter parameter in each request.
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 job.
job_status: Option<JobStatus>Filters the list 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 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 DocumentClassificationJobFilter
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 Send for DocumentClassificationJobFilter
impl Sync for DocumentClassificationJobFilter
impl Unpin for DocumentClassificationJobFilter
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
