Struct aws_sdk_datapipeline::operation::evaluate_expression::builders::EvaluateExpressionInputBuilder
source · #[non_exhaustive]pub struct EvaluateExpressionInputBuilder { /* private fields */ }
Expand description
A builder for EvaluateExpressionInput
.
Implementations§
source§impl EvaluateExpressionInputBuilder
impl EvaluateExpressionInputBuilder
sourcepub fn pipeline_id(self, input: impl Into<String>) -> Self
pub fn pipeline_id(self, input: impl Into<String>) -> Self
The ID of the pipeline.
sourcepub fn set_pipeline_id(self, input: Option<String>) -> Self
pub fn set_pipeline_id(self, input: Option<String>) -> Self
The ID of the pipeline.
sourcepub fn set_object_id(self, input: Option<String>) -> Self
pub fn set_object_id(self, input: Option<String>) -> Self
The ID of the object.
sourcepub fn expression(self, input: impl Into<String>) -> Self
pub fn expression(self, input: impl Into<String>) -> Self
The expression to evaluate.
sourcepub fn set_expression(self, input: Option<String>) -> Self
pub fn set_expression(self, input: Option<String>) -> Self
The expression to evaluate.
sourcepub fn build(self) -> Result<EvaluateExpressionInput, BuildError>
pub fn build(self) -> Result<EvaluateExpressionInput, BuildError>
Consumes the builder and constructs a EvaluateExpressionInput
.
Trait Implementations§
source§impl Clone for EvaluateExpressionInputBuilder
impl Clone for EvaluateExpressionInputBuilder
source§fn clone(&self) -> EvaluateExpressionInputBuilder
fn clone(&self) -> EvaluateExpressionInputBuilder
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 Default for EvaluateExpressionInputBuilder
impl Default for EvaluateExpressionInputBuilder
source§fn default() -> EvaluateExpressionInputBuilder
fn default() -> EvaluateExpressionInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<EvaluateExpressionInputBuilder> for EvaluateExpressionInputBuilder
impl PartialEq<EvaluateExpressionInputBuilder> for EvaluateExpressionInputBuilder
source§fn eq(&self, other: &EvaluateExpressionInputBuilder) -> bool
fn eq(&self, other: &EvaluateExpressionInputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for EvaluateExpressionInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for EvaluateExpressionInputBuilder
impl Send for EvaluateExpressionInputBuilder
impl Sync for EvaluateExpressionInputBuilder
impl Unpin for EvaluateExpressionInputBuilder
impl UnwindSafe for EvaluateExpressionInputBuilder
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