#[non_exhaustive]pub struct DescribeRecipeOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeRecipeOutput
.
Implementations§
source§impl DescribeRecipeOutputBuilder
impl DescribeRecipeOutputBuilder
sourcepub fn created_by(self, input: impl Into<String>) -> Self
pub fn created_by(self, input: impl Into<String>) -> Self
The identifier (user name) of the user who created the recipe.
sourcepub fn set_created_by(self, input: Option<String>) -> Self
pub fn set_created_by(self, input: Option<String>) -> Self
The identifier (user name) of the user who created the recipe.
sourcepub fn get_created_by(&self) -> &Option<String>
pub fn get_created_by(&self) -> &Option<String>
The identifier (user name) of the user who created the recipe.
sourcepub fn create_date(self, input: DateTime) -> Self
pub fn create_date(self, input: DateTime) -> Self
The date and time that the recipe was created.
sourcepub fn set_create_date(self, input: Option<DateTime>) -> Self
pub fn set_create_date(self, input: Option<DateTime>) -> Self
The date and time that the recipe was created.
sourcepub fn get_create_date(&self) -> &Option<DateTime>
pub fn get_create_date(&self) -> &Option<DateTime>
The date and time that the recipe was created.
sourcepub fn last_modified_by(self, input: impl Into<String>) -> Self
pub fn last_modified_by(self, input: impl Into<String>) -> Self
The identifier (user name) of the user who last modified the recipe.
sourcepub fn set_last_modified_by(self, input: Option<String>) -> Self
pub fn set_last_modified_by(self, input: Option<String>) -> Self
The identifier (user name) of the user who last modified the recipe.
sourcepub fn get_last_modified_by(&self) -> &Option<String>
pub fn get_last_modified_by(&self) -> &Option<String>
The identifier (user name) of the user who last modified the recipe.
sourcepub fn last_modified_date(self, input: DateTime) -> Self
pub fn last_modified_date(self, input: DateTime) -> Self
The date and time that the recipe was last modified.
sourcepub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
pub fn set_last_modified_date(self, input: Option<DateTime>) -> Self
The date and time that the recipe was last modified.
sourcepub fn get_last_modified_date(&self) -> &Option<DateTime>
pub fn get_last_modified_date(&self) -> &Option<DateTime>
The date and time that the recipe was last modified.
sourcepub fn project_name(self, input: impl Into<String>) -> Self
pub fn project_name(self, input: impl Into<String>) -> Self
The name of the project associated with this recipe.
sourcepub fn set_project_name(self, input: Option<String>) -> Self
pub fn set_project_name(self, input: Option<String>) -> Self
The name of the project associated with this recipe.
sourcepub fn get_project_name(&self) -> &Option<String>
pub fn get_project_name(&self) -> &Option<String>
The name of the project associated with this recipe.
sourcepub fn published_by(self, input: impl Into<String>) -> Self
pub fn published_by(self, input: impl Into<String>) -> Self
The identifier (user name) of the user who last published the recipe.
sourcepub fn set_published_by(self, input: Option<String>) -> Self
pub fn set_published_by(self, input: Option<String>) -> Self
The identifier (user name) of the user who last published the recipe.
sourcepub fn get_published_by(&self) -> &Option<String>
pub fn get_published_by(&self) -> &Option<String>
The identifier (user name) of the user who last published the recipe.
sourcepub fn published_date(self, input: DateTime) -> Self
pub fn published_date(self, input: DateTime) -> Self
The date and time when the recipe was last published.
sourcepub fn set_published_date(self, input: Option<DateTime>) -> Self
pub fn set_published_date(self, input: Option<DateTime>) -> Self
The date and time when the recipe was last published.
sourcepub fn get_published_date(&self) -> &Option<DateTime>
pub fn get_published_date(&self) -> &Option<DateTime>
The date and time when the recipe was last published.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the recipe.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the recipe.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the recipe.
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
The name of the recipe.
This field is required.sourcepub fn steps(self, input: RecipeStep) -> Self
pub fn steps(self, input: RecipeStep) -> Self
Appends an item to steps
.
To override the contents of this collection use set_steps
.
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
sourcepub fn set_steps(self, input: Option<Vec<RecipeStep>>) -> Self
pub fn set_steps(self, input: Option<Vec<RecipeStep>>) -> Self
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
sourcepub fn get_steps(&self) -> &Option<Vec<RecipeStep>>
pub fn get_steps(&self) -> &Option<Vec<RecipeStep>>
One or more steps to be performed by the recipe. Each step consists of an action, and the conditions under which the action should succeed.
Adds a key-value pair to tags
.
To override the contents of this collection use set_tags
.
Metadata tags associated with this project.
Metadata tags associated with this project.
Metadata tags associated with this project.
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
The ARN of the recipe.
sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
The ARN of the recipe.
sourcepub fn get_resource_arn(&self) -> &Option<String>
pub fn get_resource_arn(&self) -> &Option<String>
The ARN of the recipe.
sourcepub fn recipe_version(self, input: impl Into<String>) -> Self
pub fn recipe_version(self, input: impl Into<String>) -> Self
The recipe version identifier.
sourcepub fn set_recipe_version(self, input: Option<String>) -> Self
pub fn set_recipe_version(self, input: Option<String>) -> Self
The recipe version identifier.
sourcepub fn get_recipe_version(&self) -> &Option<String>
pub fn get_recipe_version(&self) -> &Option<String>
The recipe version identifier.
sourcepub fn build(self) -> Result<DescribeRecipeOutput, BuildError>
pub fn build(self) -> Result<DescribeRecipeOutput, BuildError>
Consumes the builder and constructs a DescribeRecipeOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for DescribeRecipeOutputBuilder
impl Clone for DescribeRecipeOutputBuilder
source§fn clone(&self) -> DescribeRecipeOutputBuilder
fn clone(&self) -> DescribeRecipeOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeRecipeOutputBuilder
impl Debug for DescribeRecipeOutputBuilder
source§impl Default for DescribeRecipeOutputBuilder
impl Default for DescribeRecipeOutputBuilder
source§fn default() -> DescribeRecipeOutputBuilder
fn default() -> DescribeRecipeOutputBuilder
source§impl PartialEq for DescribeRecipeOutputBuilder
impl PartialEq for DescribeRecipeOutputBuilder
source§fn eq(&self, other: &DescribeRecipeOutputBuilder) -> bool
fn eq(&self, other: &DescribeRecipeOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.