Struct aws_sdk_personalize::model::DatasetSummary
source · #[non_exhaustive]pub struct DatasetSummary { /* private fields */ }
Expand description
Provides a summary of the properties of a dataset. For a complete listing, call the DescribeDataset API.
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_type(&self) -> Option<&str>
pub fn dataset_type(&self) -> Option<&str>
The dataset type. One of the following values:
-
Interactions
-
Items
-
Users
-
Event-Interactions
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the dataset.
A dataset can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time (in Unix time) that the dataset was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The date and time (in Unix time) that the dataset was last updated.
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 ==
.