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
sourceimpl 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.
sourceimpl EntityRecognizerFilter
impl EntityRecognizerFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EntityRecognizerFilter.
Trait Implementations
sourceimpl Clone for EntityRecognizerFilter
impl Clone for EntityRecognizerFilter
sourcefn clone(&self) -> EntityRecognizerFilter
fn clone(&self) -> EntityRecognizerFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for EntityRecognizerFilter
impl Debug for EntityRecognizerFilter
sourceimpl PartialEq<EntityRecognizerFilter> for EntityRecognizerFilter
impl PartialEq<EntityRecognizerFilter> for EntityRecognizerFilter
sourcefn eq(&self, other: &EntityRecognizerFilter) -> bool
fn eq(&self, other: &EntityRecognizerFilter) -> bool
impl StructuralPartialEq for EntityRecognizerFilter
Auto Trait Implementations
impl RefUnwindSafe for EntityRecognizerFilter
impl Send for EntityRecognizerFilter
impl Sync for EntityRecognizerFilter
impl Unpin for EntityRecognizerFilter
impl UnwindSafe for EntityRecognizerFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more