Struct aws_sdk_lookoutvision::types::DatasetDescription
source · #[non_exhaustive]pub struct DatasetDescription {
pub project_name: Option<String>,
pub dataset_type: Option<String>,
pub creation_timestamp: Option<DateTime>,
pub last_updated_timestamp: Option<DateTime>,
pub status: Option<DatasetStatus>,
pub status_message: Option<String>,
pub image_stats: Option<DatasetImageStats>,
}Expand description
The description for a dataset. For more information, see DescribeDataset.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project_name: Option<String>The name of the project that contains the dataset.
dataset_type: Option<String>The type of the dataset. The value train represents a training dataset or single dataset project. The value test represents a test dataset.
creation_timestamp: Option<DateTime>The Unix timestamp for the time and date that the dataset was created.
last_updated_timestamp: Option<DateTime>The Unix timestamp for the date and time that the dataset was last updated.
status: Option<DatasetStatus>The status of the dataset.
status_message: Option<String>The status message for the dataset.
image_stats: Option<DatasetImageStats>Statistics about the images in a dataset.
Implementations§
source§impl DatasetDescription
impl DatasetDescription
sourcepub fn project_name(&self) -> Option<&str>
pub fn project_name(&self) -> Option<&str>
The name of the project that contains the dataset.
sourcepub fn dataset_type(&self) -> Option<&str>
pub fn dataset_type(&self) -> Option<&str>
The type of the dataset. The value train represents a training dataset or single dataset project. The value test represents a test dataset.
sourcepub fn creation_timestamp(&self) -> Option<&DateTime>
pub fn creation_timestamp(&self) -> Option<&DateTime>
The Unix timestamp for the time and date that the dataset was created.
sourcepub fn last_updated_timestamp(&self) -> Option<&DateTime>
pub fn last_updated_timestamp(&self) -> Option<&DateTime>
The Unix timestamp for the date and time that the dataset was last updated.
sourcepub fn status(&self) -> Option<&DatasetStatus>
pub fn status(&self) -> Option<&DatasetStatus>
The status of the dataset.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message for the dataset.
sourcepub fn image_stats(&self) -> Option<&DatasetImageStats>
pub fn image_stats(&self) -> Option<&DatasetImageStats>
Statistics about the images in a dataset.
source§impl DatasetDescription
impl DatasetDescription
sourcepub fn builder() -> DatasetDescriptionBuilder
pub fn builder() -> DatasetDescriptionBuilder
Creates a new builder-style object to manufacture DatasetDescription.
Trait Implementations§
source§impl Clone for DatasetDescription
impl Clone for DatasetDescription
source§fn clone(&self) -> DatasetDescription
fn clone(&self) -> DatasetDescription
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DatasetDescription
impl Debug for DatasetDescription
source§impl PartialEq for DatasetDescription
impl PartialEq for DatasetDescription
source§fn eq(&self, other: &DatasetDescription) -> bool
fn eq(&self, other: &DatasetDescription) -> bool
self and other values to be equal, and is used
by ==.