Struct aws_sdk_comprehend::model::DocumentClassifierFilter [−][src]
#[non_exhaustive]pub struct DocumentClassifierFilter {
pub status: Option<ModelStatus>,
pub document_classifier_name: Option<String>,
pub submit_time_before: Option<DateTime>,
pub submit_time_after: Option<DateTime>,
}Expand description
Provides information for filtering a list of document classifiers. You can only specify one filtering parameter in a request. For more information, see the operation.
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.status: Option<ModelStatus>Filters the list of classifiers based on status.
document_classifier_name: Option<String>The name that you assigned to the document classifier
submit_time_before: Option<DateTime>Filters the list of classifiers based on the time that the classifier was submitted for processing. Returns only classifiers submitted before the specified time. Classifiers are returned in ascending order, oldest to newest.
submit_time_after: Option<DateTime>Filters the list of classifiers based on the time that the classifier was submitted for processing. Returns only classifiers submitted after the specified time. Classifiers are returned in descending order, newest to oldest.
Implementations
Filters the list of classifiers based on status.
The name that you assigned to the document classifier
Filters the list of classifiers based on the time that the classifier was submitted for processing. Returns only classifiers submitted before the specified time. Classifiers are returned in ascending order, oldest to newest.
Filters the list of classifiers based on the time that the classifier was submitted for processing. Returns only classifiers submitted after the specified time. Classifiers are returned in descending order, newest to oldest.
Creates a new builder-style object to manufacture DocumentClassifierFilter
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 DocumentClassifierFilter
impl Send for DocumentClassifierFilter
impl Sync for DocumentClassifierFilter
impl Unpin for DocumentClassifierFilter
impl UnwindSafe for DocumentClassifierFilter
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
