Struct aws_sdk_personalize::model::DatasetGroupSummary
source · #[non_exhaustive]pub struct DatasetGroupSummary { /* private fields */ }
Expand description
Provides a summary of the properties of a dataset group. For a complete listing, call the DescribeDatasetGroup API.
Implementations§
source§impl DatasetGroupSummary
impl DatasetGroupSummary
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset group.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the dataset group.
A dataset group can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING
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 group 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 group was last updated.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
If creating a dataset group fails, the reason behind the failure.
source§impl DatasetGroupSummary
impl DatasetGroupSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DatasetGroupSummary
.
Trait Implementations§
source§impl Clone for DatasetGroupSummary
impl Clone for DatasetGroupSummary
source§fn clone(&self) -> DatasetGroupSummary
fn clone(&self) -> DatasetGroupSummary
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 DatasetGroupSummary
impl Debug for DatasetGroupSummary
source§impl PartialEq<DatasetGroupSummary> for DatasetGroupSummary
impl PartialEq<DatasetGroupSummary> for DatasetGroupSummary
source§fn eq(&self, other: &DatasetGroupSummary) -> bool
fn eq(&self, other: &DatasetGroupSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.