Struct aws_sdk_datapipeline::operation::get_pipeline_definition::builders::GetPipelineDefinitionOutputBuilder
source · #[non_exhaustive]pub struct GetPipelineDefinitionOutputBuilder { /* private fields */ }
Expand description
A builder for GetPipelineDefinitionOutput
.
Implementations§
source§impl GetPipelineDefinitionOutputBuilder
impl GetPipelineDefinitionOutputBuilder
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 defined in the pipeline.
sourcepub fn set_pipeline_objects(self, input: Option<Vec<PipelineObject>>) -> Self
pub fn set_pipeline_objects(self, input: Option<Vec<PipelineObject>>) -> Self
The objects defined in the pipeline.
sourcepub fn get_pipeline_objects(&self) -> &Option<Vec<PipelineObject>>
pub fn get_pipeline_objects(&self) -> &Option<Vec<PipelineObject>>
The objects defined in the pipeline.
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 in the pipeline definition.
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 in the pipeline definition.
sourcepub fn get_parameter_objects(&self) -> &Option<Vec<ParameterObject>>
pub fn get_parameter_objects(&self) -> &Option<Vec<ParameterObject>>
The parameter objects used in the pipeline definition.
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 in the pipeline definition.
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 in the pipeline definition.
sourcepub fn get_parameter_values(&self) -> &Option<Vec<ParameterValue>>
pub fn get_parameter_values(&self) -> &Option<Vec<ParameterValue>>
The parameter values used in the pipeline definition.
sourcepub fn build(self) -> GetPipelineDefinitionOutput
pub fn build(self) -> GetPipelineDefinitionOutput
Consumes the builder and constructs a GetPipelineDefinitionOutput
.
Trait Implementations§
source§impl Clone for GetPipelineDefinitionOutputBuilder
impl Clone for GetPipelineDefinitionOutputBuilder
source§fn clone(&self) -> GetPipelineDefinitionOutputBuilder
fn clone(&self) -> GetPipelineDefinitionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetPipelineDefinitionOutputBuilder
impl Default for GetPipelineDefinitionOutputBuilder
source§fn default() -> GetPipelineDefinitionOutputBuilder
fn default() -> GetPipelineDefinitionOutputBuilder
source§impl PartialEq for GetPipelineDefinitionOutputBuilder
impl PartialEq for GetPipelineDefinitionOutputBuilder
source§fn eq(&self, other: &GetPipelineDefinitionOutputBuilder) -> bool
fn eq(&self, other: &GetPipelineDefinitionOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetPipelineDefinitionOutputBuilder
Auto Trait Implementations§
impl Freeze for GetPipelineDefinitionOutputBuilder
impl RefUnwindSafe for GetPipelineDefinitionOutputBuilder
impl Send for GetPipelineDefinitionOutputBuilder
impl Sync for GetPipelineDefinitionOutputBuilder
impl Unpin for GetPipelineDefinitionOutputBuilder
impl UnwindSafe for GetPipelineDefinitionOutputBuilder
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