Struct aws_sdk_comprehend::model::EntityRecognizerFilter
source · #[non_exhaustive]pub struct EntityRecognizerFilter { /* private fields */ }Expand description
Provides information for filtering a list of entity recognizers. You can only specify one filtering parameter in a request. For more information, see the operation./>
Implementations§
source§impl EntityRecognizerFilter
impl EntityRecognizerFilter
sourcepub fn status(&self) -> Option<&ModelStatus>
pub fn status(&self) -> Option<&ModelStatus>
The status of an entity recognizer.
sourcepub fn recognizer_name(&self) -> Option<&str>
pub fn recognizer_name(&self) -> Option<&str>
The name that you assigned the entity recognizer.
sourcepub fn submit_time_before(&self) -> Option<&DateTime>
pub fn submit_time_before(&self) -> Option<&DateTime>
Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted before the specified time. Jobs are returned in descending order, newest to oldest.
sourcepub fn submit_time_after(&self) -> Option<&DateTime>
pub fn submit_time_after(&self) -> Option<&DateTime>
Filters the list of entities based on the time that the list was submitted for processing. Returns only jobs submitted after the specified time. Jobs are returned in ascending order, oldest to newest.
source§impl EntityRecognizerFilter
impl EntityRecognizerFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EntityRecognizerFilter.
Trait Implementations§
source§impl Clone for EntityRecognizerFilter
impl Clone for EntityRecognizerFilter
source§fn clone(&self) -> EntityRecognizerFilter
fn clone(&self) -> EntityRecognizerFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for EntityRecognizerFilter
impl Debug for EntityRecognizerFilter
source§impl PartialEq<EntityRecognizerFilter> for EntityRecognizerFilter
impl PartialEq<EntityRecognizerFilter> for EntityRecognizerFilter
source§fn eq(&self, other: &EntityRecognizerFilter) -> bool
fn eq(&self, other: &EntityRecognizerFilter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.