Struct aws_sdk_datapipeline::operation::put_pipeline_definition::builders::PutPipelineDefinitionInputBuilder
source · #[non_exhaustive]pub struct PutPipelineDefinitionInputBuilder { /* private fields */ }
Expand description
A builder for PutPipelineDefinitionInput
.
Implementations§
source§impl PutPipelineDefinitionInputBuilder
impl PutPipelineDefinitionInputBuilder
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 pipeline_objects(self, input: PipelineObject) -> Self
pub fn pipeline_objects(self, input: PipelineObject) -> Self
Appends an item to pipeline_objects
.
To override the contents of this collection use set_pipeline_objects
.
The objects that define the pipeline. These objects overwrite the existing pipeline definition.
sourcepub fn set_pipeline_objects(self, input: Option<Vec<PipelineObject>>) -> Self
pub fn set_pipeline_objects(self, input: Option<Vec<PipelineObject>>) -> Self
The objects that define the pipeline. These objects overwrite the existing pipeline definition.
sourcepub fn get_pipeline_objects(&self) -> &Option<Vec<PipelineObject>>
pub fn get_pipeline_objects(&self) -> &Option<Vec<PipelineObject>>
The objects that define the pipeline. These objects overwrite the existing pipeline definition.
sourcepub fn parameter_objects(self, input: ParameterObject) -> Self
pub fn parameter_objects(self, input: ParameterObject) -> Self
Appends an item to parameter_objects
.
To override the contents of this collection use set_parameter_objects
.
The parameter objects used with the pipeline.
sourcepub fn set_parameter_objects(self, input: Option<Vec<ParameterObject>>) -> Self
pub fn set_parameter_objects(self, input: Option<Vec<ParameterObject>>) -> Self
The parameter objects used with the pipeline.
sourcepub fn get_parameter_objects(&self) -> &Option<Vec<ParameterObject>>
pub fn get_parameter_objects(&self) -> &Option<Vec<ParameterObject>>
The parameter objects used with the pipeline.
sourcepub fn parameter_values(self, input: ParameterValue) -> Self
pub fn parameter_values(self, input: ParameterValue) -> Self
Appends an item to parameter_values
.
To override the contents of this collection use set_parameter_values
.
The parameter values used with the pipeline.
sourcepub fn set_parameter_values(self, input: Option<Vec<ParameterValue>>) -> Self
pub fn set_parameter_values(self, input: Option<Vec<ParameterValue>>) -> Self
The parameter values used with the pipeline.
sourcepub fn get_parameter_values(&self) -> &Option<Vec<ParameterValue>>
pub fn get_parameter_values(&self) -> &Option<Vec<ParameterValue>>
The parameter values used with the pipeline.
sourcepub fn build(self) -> Result<PutPipelineDefinitionInput, BuildError>
pub fn build(self) -> Result<PutPipelineDefinitionInput, BuildError>
Consumes the builder and constructs a PutPipelineDefinitionInput
.
source§impl PutPipelineDefinitionInputBuilder
impl PutPipelineDefinitionInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<PutPipelineDefinitionOutput, SdkError<PutPipelineDefinitionError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<PutPipelineDefinitionOutput, SdkError<PutPipelineDefinitionError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for PutPipelineDefinitionInputBuilder
impl Clone for PutPipelineDefinitionInputBuilder
source§fn clone(&self) -> PutPipelineDefinitionInputBuilder
fn clone(&self) -> PutPipelineDefinitionInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for PutPipelineDefinitionInputBuilder
impl Default for PutPipelineDefinitionInputBuilder
source§fn default() -> PutPipelineDefinitionInputBuilder
fn default() -> PutPipelineDefinitionInputBuilder
source§impl PartialEq for PutPipelineDefinitionInputBuilder
impl PartialEq for PutPipelineDefinitionInputBuilder
source§fn eq(&self, other: &PutPipelineDefinitionInputBuilder) -> bool
fn eq(&self, other: &PutPipelineDefinitionInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutPipelineDefinitionInputBuilder
Auto Trait Implementations§
impl Freeze for PutPipelineDefinitionInputBuilder
impl RefUnwindSafe for PutPipelineDefinitionInputBuilder
impl Send for PutPipelineDefinitionInputBuilder
impl Sync for PutPipelineDefinitionInputBuilder
impl Unpin for PutPipelineDefinitionInputBuilder
impl UnwindSafe for PutPipelineDefinitionInputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more