Struct aws_sdk_codepipeline::operation::get_pipeline_execution::builders::GetPipelineExecutionOutputBuilder
source · #[non_exhaustive]pub struct GetPipelineExecutionOutputBuilder { /* private fields */ }
Expand description
A builder for GetPipelineExecutionOutput
.
Implementations§
source§impl GetPipelineExecutionOutputBuilder
impl GetPipelineExecutionOutputBuilder
sourcepub fn pipeline_execution(self, input: PipelineExecution) -> Self
pub fn pipeline_execution(self, input: PipelineExecution) -> Self
Represents information about the execution of a pipeline.
sourcepub fn set_pipeline_execution(self, input: Option<PipelineExecution>) -> Self
pub fn set_pipeline_execution(self, input: Option<PipelineExecution>) -> Self
Represents information about the execution of a pipeline.
sourcepub fn get_pipeline_execution(&self) -> &Option<PipelineExecution>
pub fn get_pipeline_execution(&self) -> &Option<PipelineExecution>
Represents information about the execution of a pipeline.
sourcepub fn build(self) -> GetPipelineExecutionOutput
pub fn build(self) -> GetPipelineExecutionOutput
Consumes the builder and constructs a GetPipelineExecutionOutput
.
Trait Implementations§
source§impl Clone for GetPipelineExecutionOutputBuilder
impl Clone for GetPipelineExecutionOutputBuilder
source§fn clone(&self) -> GetPipelineExecutionOutputBuilder
fn clone(&self) -> GetPipelineExecutionOutputBuilder
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 GetPipelineExecutionOutputBuilder
impl Default for GetPipelineExecutionOutputBuilder
source§fn default() -> GetPipelineExecutionOutputBuilder
fn default() -> GetPipelineExecutionOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetPipelineExecutionOutputBuilder
impl PartialEq for GetPipelineExecutionOutputBuilder
source§fn eq(&self, other: &GetPipelineExecutionOutputBuilder) -> bool
fn eq(&self, other: &GetPipelineExecutionOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetPipelineExecutionOutputBuilder
Auto Trait Implementations§
impl Freeze for GetPipelineExecutionOutputBuilder
impl RefUnwindSafe for GetPipelineExecutionOutputBuilder
impl Send for GetPipelineExecutionOutputBuilder
impl Sync for GetPipelineExecutionOutputBuilder
impl Unpin for GetPipelineExecutionOutputBuilder
impl UnwindSafe for GetPipelineExecutionOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.