Struct aws_sdk_comprehend::types::DatasetProperties
source · #[non_exhaustive]pub struct DatasetProperties { /* private fields */ }Expand description
Properties associated with the dataset.
Implementations§
source§impl DatasetProperties
impl DatasetProperties
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The ARN of the dataset.
sourcepub fn dataset_name(&self) -> Option<&str>
pub fn dataset_name(&self) -> Option<&str>
The name of the dataset.
sourcepub fn dataset_type(&self) -> Option<&DatasetType>
pub fn dataset_type(&self) -> Option<&DatasetType>
The dataset type (training data or test data).
sourcepub fn dataset_s3_uri(&self) -> Option<&str>
pub fn dataset_s3_uri(&self) -> Option<&str>
The S3 URI where the dataset is stored.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
Description of the dataset.
sourcepub fn status(&self) -> Option<&DatasetStatus>
pub fn status(&self) -> Option<&DatasetStatus>
The dataset status. While the system creates the dataset, the status is CREATING. When the dataset is ready to use, the status changes to COMPLETED.
sourcepub fn number_of_documents(&self) -> Option<i64>
pub fn number_of_documents(&self) -> Option<i64>
The number of documents in the dataset.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
Creation time of the dataset.
source§impl DatasetProperties
impl DatasetProperties
sourcepub fn builder() -> DatasetPropertiesBuilder
pub fn builder() -> DatasetPropertiesBuilder
Creates a new builder-style object to manufacture DatasetProperties.
Trait Implementations§
source§impl Clone for DatasetProperties
impl Clone for DatasetProperties
source§fn clone(&self) -> DatasetProperties
fn clone(&self) -> DatasetProperties
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 DatasetProperties
impl Debug for DatasetProperties
source§impl PartialEq<DatasetProperties> for DatasetProperties
impl PartialEq<DatasetProperties> for DatasetProperties
source§fn eq(&self, other: &DatasetProperties) -> bool
fn eq(&self, other: &DatasetProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DatasetProperties
Auto Trait Implementations§
impl RefUnwindSafe for DatasetProperties
impl Send for DatasetProperties
impl Sync for DatasetProperties
impl Unpin for DatasetProperties
impl UnwindSafe for DatasetProperties
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