Struct aws_sdk_comprehend::types::EntityRecognizerSummary  
source · #[non_exhaustive]pub struct EntityRecognizerSummary {
    pub recognizer_name: Option<String>,
    pub number_of_versions: Option<i32>,
    pub latest_version_created_at: Option<DateTime>,
    pub latest_version_name: Option<String>,
    pub latest_version_status: Option<ModelStatus>,
}Expand description
Describes the information about an entity recognizer and its versions.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional 
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.recognizer_name: Option<String>The name that you assigned the entity recognizer.
number_of_versions: Option<i32>The number of versions you created.
latest_version_created_at: Option<DateTime>The time that the latest entity recognizer version was submitted for processing.
latest_version_name: Option<String>The version name you assigned to the latest entity recognizer version.
latest_version_status: Option<ModelStatus>Provides the status of the latest entity recognizer version.
Implementations§
source§impl EntityRecognizerSummary
 
impl EntityRecognizerSummary
sourcepub fn recognizer_name(&self) -> Option<&str>
 
pub fn recognizer_name(&self) -> Option<&str>
The name that you assigned the entity recognizer.
sourcepub fn number_of_versions(&self) -> Option<i32>
 
pub fn number_of_versions(&self) -> Option<i32>
The number of versions you created.
sourcepub fn latest_version_created_at(&self) -> Option<&DateTime>
 
pub fn latest_version_created_at(&self) -> Option<&DateTime>
The time that the latest entity recognizer version was submitted for processing.
sourcepub fn latest_version_name(&self) -> Option<&str>
 
pub fn latest_version_name(&self) -> Option<&str>
The version name you assigned to the latest entity recognizer version.
sourcepub fn latest_version_status(&self) -> Option<&ModelStatus>
 
pub fn latest_version_status(&self) -> Option<&ModelStatus>
Provides the status of the latest entity recognizer version.
source§impl EntityRecognizerSummary
 
impl EntityRecognizerSummary
sourcepub fn builder() -> EntityRecognizerSummaryBuilder
 
pub fn builder() -> EntityRecognizerSummaryBuilder
Creates a new builder-style object to manufacture EntityRecognizerSummary.
Trait Implementations§
source§impl Clone for EntityRecognizerSummary
 
impl Clone for EntityRecognizerSummary
source§fn clone(&self) -> EntityRecognizerSummary
 
fn clone(&self) -> EntityRecognizerSummary
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 EntityRecognizerSummary
 
impl Debug for EntityRecognizerSummary
source§impl PartialEq<EntityRecognizerSummary> for EntityRecognizerSummary
 
impl PartialEq<EntityRecognizerSummary> for EntityRecognizerSummary
source§fn eq(&self, other: &EntityRecognizerSummary) -> bool
 
fn eq(&self, other: &EntityRecognizerSummary) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for EntityRecognizerSummary
Auto Trait Implementations§
impl RefUnwindSafe for EntityRecognizerSummary
impl Send for EntityRecognizerSummary
impl Sync for EntityRecognizerSummary
impl Unpin for EntityRecognizerSummary
impl UnwindSafe for EntityRecognizerSummary
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more