Struct aws_sdk_databrew::types::builders::RecipeActionBuilder
source · #[non_exhaustive]pub struct RecipeActionBuilder { /* private fields */ }
Expand description
A builder for RecipeAction
.
Implementations§
source§impl RecipeActionBuilder
impl RecipeActionBuilder
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.
This field is required.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 get_operation(&self) -> &Option<String>
pub fn get_operation(&self) -> &Option<String>
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 get_parameters(&self) -> &Option<HashMap<String, String>>
pub fn get_parameters(&self) -> &Option<HashMap<String, String>>
Contextual parameters for the transformation.
sourcepub fn build(self) -> Result<RecipeAction, BuildError>
pub fn build(self) -> Result<RecipeAction, BuildError>
Consumes the builder and constructs a RecipeAction
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for RecipeActionBuilder
impl Clone for RecipeActionBuilder
source§fn clone(&self) -> RecipeActionBuilder
fn clone(&self) -> RecipeActionBuilder
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 RecipeActionBuilder
impl Debug for RecipeActionBuilder
source§impl Default for RecipeActionBuilder
impl Default for RecipeActionBuilder
source§fn default() -> RecipeActionBuilder
fn default() -> RecipeActionBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for RecipeActionBuilder
impl PartialEq for RecipeActionBuilder
source§fn eq(&self, other: &RecipeActionBuilder) -> bool
fn eq(&self, other: &RecipeActionBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecipeActionBuilder
Auto Trait Implementations§
impl RefUnwindSafe for RecipeActionBuilder
impl Send for RecipeActionBuilder
impl Sync for RecipeActionBuilder
impl Unpin for RecipeActionBuilder
impl UnwindSafe for RecipeActionBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.