Struct aws_sdk_personalize::types::builders::SolutionSummaryBuilder
source · #[non_exhaustive]pub struct SolutionSummaryBuilder { /* private fields */ }
Expand description
A builder for SolutionSummary
.
Implementations§
source§impl SolutionSummaryBuilder
impl SolutionSummaryBuilder
sourcepub fn solution_arn(self, input: impl Into<String>) -> Self
pub fn solution_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the solution.
sourcepub fn set_solution_arn(self, input: Option<String>) -> Self
pub fn set_solution_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the solution.
sourcepub fn get_solution_arn(&self) -> &Option<String>
pub fn get_solution_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the solution.
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
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 set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
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 get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
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, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The date and time (in Unix time) that the solution was created.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The date and time (in Unix time) that the solution was created.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_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, input: DateTime) -> Self
pub fn last_updated_date_time(self, input: DateTime) -> Self
The date and time (in Unix time) that the solution was last updated.
sourcepub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
The date and time (in Unix time) that the solution was last updated.
sourcepub fn get_last_updated_date_time(&self) -> &Option<DateTime>
pub fn get_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, input: impl Into<String>) -> Self
pub fn recipe_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the recipe used by the solution.
sourcepub fn set_recipe_arn(self, input: Option<String>) -> Self
pub fn set_recipe_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the recipe used by the solution.
sourcepub fn get_recipe_arn(&self) -> &Option<String>
pub fn get_recipe_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the recipe used by the solution.
sourcepub fn build(self) -> SolutionSummary
pub fn build(self) -> SolutionSummary
Consumes the builder and constructs a SolutionSummary
.
Trait Implementations§
source§impl Clone for SolutionSummaryBuilder
impl Clone for SolutionSummaryBuilder
source§fn clone(&self) -> SolutionSummaryBuilder
fn clone(&self) -> SolutionSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SolutionSummaryBuilder
impl Debug for SolutionSummaryBuilder
source§impl Default for SolutionSummaryBuilder
impl Default for SolutionSummaryBuilder
source§fn default() -> SolutionSummaryBuilder
fn default() -> SolutionSummaryBuilder
source§impl PartialEq for SolutionSummaryBuilder
impl PartialEq for SolutionSummaryBuilder
source§fn eq(&self, other: &SolutionSummaryBuilder) -> bool
fn eq(&self, other: &SolutionSummaryBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.