Struct aws_sdk_codepipeline::operation::get_third_party_job_details::builders::GetThirdPartyJobDetailsOutputBuilder
source · #[non_exhaustive]pub struct GetThirdPartyJobDetailsOutputBuilder { /* private fields */ }
Expand description
A builder for GetThirdPartyJobDetailsOutput
.
Implementations§
source§impl GetThirdPartyJobDetailsOutputBuilder
impl GetThirdPartyJobDetailsOutputBuilder
sourcepub fn job_details(self, input: ThirdPartyJobDetails) -> Self
pub fn job_details(self, input: ThirdPartyJobDetails) -> Self
The details of the job, including any protected values defined for the job.
sourcepub fn set_job_details(self, input: Option<ThirdPartyJobDetails>) -> Self
pub fn set_job_details(self, input: Option<ThirdPartyJobDetails>) -> Self
The details of the job, including any protected values defined for the job.
sourcepub fn get_job_details(&self) -> &Option<ThirdPartyJobDetails>
pub fn get_job_details(&self) -> &Option<ThirdPartyJobDetails>
The details of the job, including any protected values defined for the job.
sourcepub fn build(self) -> GetThirdPartyJobDetailsOutput
pub fn build(self) -> GetThirdPartyJobDetailsOutput
Consumes the builder and constructs a GetThirdPartyJobDetailsOutput
.
Trait Implementations§
source§impl Clone for GetThirdPartyJobDetailsOutputBuilder
impl Clone for GetThirdPartyJobDetailsOutputBuilder
source§fn clone(&self) -> GetThirdPartyJobDetailsOutputBuilder
fn clone(&self) -> GetThirdPartyJobDetailsOutputBuilder
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 GetThirdPartyJobDetailsOutputBuilder
impl Default for GetThirdPartyJobDetailsOutputBuilder
source§fn default() -> GetThirdPartyJobDetailsOutputBuilder
fn default() -> GetThirdPartyJobDetailsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetThirdPartyJobDetailsOutputBuilder
impl PartialEq for GetThirdPartyJobDetailsOutputBuilder
source§fn eq(&self, other: &GetThirdPartyJobDetailsOutputBuilder) -> bool
fn eq(&self, other: &GetThirdPartyJobDetailsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetThirdPartyJobDetailsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetThirdPartyJobDetailsOutputBuilder
impl RefUnwindSafe for GetThirdPartyJobDetailsOutputBuilder
impl Send for GetThirdPartyJobDetailsOutputBuilder
impl Sync for GetThirdPartyJobDetailsOutputBuilder
impl Unpin for GetThirdPartyJobDetailsOutputBuilder
impl UnwindSafe for GetThirdPartyJobDetailsOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.