Struct aws_sdk_databrew::model::recipe_step::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for RecipeStep
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn action(self, input: RecipeAction) -> Self
pub fn action(self, input: RecipeAction) -> Self
The particular action to be performed in the recipe step.
sourcepub fn set_action(self, input: Option<RecipeAction>) -> Self
pub fn set_action(self, input: Option<RecipeAction>) -> Self
The particular action to be performed in the recipe step.
sourcepub fn condition_expressions(self, input: ConditionExpression) -> Self
pub fn condition_expressions(self, input: ConditionExpression) -> Self
Appends an item to condition_expressions
.
To override the contents of this collection use set_condition_expressions
.
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
sourcepub fn set_condition_expressions(
self,
input: Option<Vec<ConditionExpression>>
) -> Self
pub fn set_condition_expressions(
self,
input: Option<Vec<ConditionExpression>>
) -> Self
One or more conditions that must be met for the recipe step to succeed.
All of the conditions in the array must be met. In other words, all of the conditions must be combined using a logical AND operation.
sourcepub fn build(self) -> RecipeStep
pub fn build(self) -> RecipeStep
Consumes the builder and constructs a RecipeStep
.