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.
This field is required.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 get_pipeline_id(&self) -> &Option<String>
pub fn get_pipeline_id(&self) -> &Option<String>
The ID of the pipeline.
sourcepub fn object_id(self, input: impl Into<String>) -> Self
pub fn object_id(self, input: impl Into<String>) -> Self
The ID of the object.
This field is required.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 get_object_id(&self) -> &Option<String>
pub fn get_object_id(&self) -> &Option<String>
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.
This field is required.sourcepub fn set_expression(self, input: Option<String>) -> Self
pub fn set_expression(self, input: Option<String>) -> Self
The expression to evaluate.
sourcepub fn get_expression(&self) -> &Option<String>
pub fn get_expression(&self) -> &Option<String>
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.
source§impl EvaluateExpressionInputBuilder
impl EvaluateExpressionInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<EvaluateExpressionOutput, SdkError<EvaluateExpressionError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<EvaluateExpressionOutput, SdkError<EvaluateExpressionError, HttpResponse>>
Sends a request with this input using the given client.
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 for EvaluateExpressionInputBuilder
impl PartialEq 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 Freeze for EvaluateExpressionInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.