Struct aws_sdk_forecast::model::DatasetSummary
source · #[non_exhaustive]pub struct DatasetSummary { /* private fields */ }Expand description
Provides a summary of the dataset properties used in the ListDatasets operation. To get the complete set of properties, call the DescribeDataset operation, and provide the DatasetArn.
Implementations§
source§impl DatasetSummary
impl DatasetSummary
sourcepub fn dataset_arn(&self) -> Option<&str>
pub fn dataset_arn(&self) -> Option<&str>
The Amazon Resource Name (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.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the dataset was created.
sourcepub fn last_modification_time(&self) -> Option<&DateTime>
pub fn last_modification_time(&self) -> Option<&DateTime>
When you create a dataset, LastModificationTime is the same as CreationTime. While data is being imported to the dataset, LastModificationTime is the current time of the ListDatasets call. After a CreateDatasetImportJob operation has finished, LastModificationTime is when the import job completed or failed.
source§impl DatasetSummary
impl DatasetSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DatasetSummary.
Trait Implementations§
source§impl Clone for DatasetSummary
impl Clone for DatasetSummary
source§fn clone(&self) -> DatasetSummary
fn clone(&self) -> DatasetSummary
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 DatasetSummary
impl Debug for DatasetSummary
source§impl PartialEq<DatasetSummary> for DatasetSummary
impl PartialEq<DatasetSummary> for DatasetSummary
source§fn eq(&self, other: &DatasetSummary) -> bool
fn eq(&self, other: &DatasetSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.