Struct aws_sdk_comprehend::model::DocumentClassifierFilter
source · [−]#[non_exhaustive]pub struct DocumentClassifierFilter { /* private fields */ }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.
Implementations
sourceimpl DocumentClassifierFilter
impl DocumentClassifierFilter
sourcepub fn status(&self) -> Option<&ModelStatus>
pub fn status(&self) -> Option<&ModelStatus>
Filters the list of classifiers based on status.
sourcepub fn document_classifier_name(&self) -> Option<&str>
pub fn document_classifier_name(&self) -> Option<&str>
The name that you assigned to the document classifier
sourcepub fn submit_time_before(&self) -> Option<&DateTime>
pub fn submit_time_before(&self) -> 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.
sourcepub fn submit_time_after(&self) -> Option<&DateTime>
pub fn submit_time_after(&self) -> 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.
sourceimpl DocumentClassifierFilter
impl DocumentClassifierFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DocumentClassifierFilter.
Trait Implementations
sourceimpl Clone for DocumentClassifierFilter
impl Clone for DocumentClassifierFilter
sourcefn clone(&self) -> DocumentClassifierFilter
fn clone(&self) -> DocumentClassifierFilter
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more