Struct aws_sdk_databrew::model::recipe_action::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for RecipeAction
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn operation(self, input: impl Into<String>) -> Self
pub fn operation(self, input: impl Into<String>) -> Self
The name of a valid DataBrew transformation to be performed on the data.
sourcepub fn set_operation(self, input: Option<String>) -> Self
pub fn set_operation(self, input: Option<String>) -> Self
The name of a valid DataBrew transformation to be performed on the data.
sourcepub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
pub fn parameters(self, k: impl Into<String>, v: impl Into<String>) -> Self
Adds a key-value pair to parameters
.
To override the contents of this collection use set_parameters
.
Contextual parameters for the transformation.
sourcepub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
pub fn set_parameters(self, input: Option<HashMap<String, String>>) -> Self
Contextual parameters for the transformation.
sourcepub fn build(self) -> RecipeAction
pub fn build(self) -> RecipeAction
Consumes the builder and constructs a RecipeAction
.