Struct aws_sdk_personalize::model::SolutionSummary
source · #[non_exhaustive]pub struct SolutionSummary { /* private fields */ }
Expand description
Provides a summary of the properties of a solution. For a complete listing, call the DescribeSolution API.
Implementations§
source§impl SolutionSummary
impl SolutionSummary
sourcepub fn solution_arn(&self) -> Option<&str>
pub fn solution_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the solution.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the solution.
A solution 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 solution 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 solution was last updated.
sourcepub fn recipe_arn(&self) -> Option<&str>
pub fn recipe_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the recipe used by the solution.
source§impl SolutionSummary
impl SolutionSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SolutionSummary
.
Trait Implementations§
source§impl Clone for SolutionSummary
impl Clone for SolutionSummary
source§fn clone(&self) -> SolutionSummary
fn clone(&self) -> SolutionSummary
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 SolutionSummary
impl Debug for SolutionSummary
source§impl PartialEq<SolutionSummary> for SolutionSummary
impl PartialEq<SolutionSummary> for SolutionSummary
source§fn eq(&self, other: &SolutionSummary) -> bool
fn eq(&self, other: &SolutionSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.