#[non_exhaustive]pub struct DocumentClassifierSummary { /* private fields */ }Expand description
Describes information about a document classifier and its versions.
Implementations§
source§impl DocumentClassifierSummary
impl DocumentClassifierSummary
sourcepub fn document_classifier_name(&self) -> Option<&str>
pub fn document_classifier_name(&self) -> Option<&str>
The name that you assigned the document classifier.
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 document classifier 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 document classifier version.
sourcepub fn latest_version_status(&self) -> Option<&ModelStatus>
pub fn latest_version_status(&self) -> Option<&ModelStatus>
Provides the status of the latest document classifier version.
source§impl DocumentClassifierSummary
impl DocumentClassifierSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DocumentClassifierSummary.
Trait Implementations§
source§impl Clone for DocumentClassifierSummary
impl Clone for DocumentClassifierSummary
source§fn clone(&self) -> DocumentClassifierSummary
fn clone(&self) -> DocumentClassifierSummary
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 DocumentClassifierSummary
impl Debug for DocumentClassifierSummary
source§impl PartialEq<DocumentClassifierSummary> for DocumentClassifierSummary
impl PartialEq<DocumentClassifierSummary> for DocumentClassifierSummary
source§fn eq(&self, other: &DocumentClassifierSummary) -> bool
fn eq(&self, other: &DocumentClassifierSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.