Struct aws_sdk_codepipeline::operation::get_job_details::builders::GetJobDetailsOutputBuilder
source · #[non_exhaustive]pub struct GetJobDetailsOutputBuilder { /* private fields */ }
Expand description
A builder for GetJobDetailsOutput
.
Implementations§
source§impl GetJobDetailsOutputBuilder
impl GetJobDetailsOutputBuilder
sourcepub fn job_details(self, input: JobDetails) -> Self
pub fn job_details(self, input: JobDetails) -> Self
The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails
again to obtain new credentials.
sourcepub fn set_job_details(self, input: Option<JobDetails>) -> Self
pub fn set_job_details(self, input: Option<JobDetails>) -> Self
The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails
again to obtain new credentials.
sourcepub fn get_job_details(&self) -> &Option<JobDetails>
pub fn get_job_details(&self) -> &Option<JobDetails>
The details of the job.
If AWSSessionCredentials is used, a long-running job can call GetJobDetails
again to obtain new credentials.
sourcepub fn build(self) -> GetJobDetailsOutput
pub fn build(self) -> GetJobDetailsOutput
Consumes the builder and constructs a GetJobDetailsOutput
.
Trait Implementations§
source§impl Clone for GetJobDetailsOutputBuilder
impl Clone for GetJobDetailsOutputBuilder
source§fn clone(&self) -> GetJobDetailsOutputBuilder
fn clone(&self) -> GetJobDetailsOutputBuilder
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 Debug for GetJobDetailsOutputBuilder
impl Debug for GetJobDetailsOutputBuilder
source§impl Default for GetJobDetailsOutputBuilder
impl Default for GetJobDetailsOutputBuilder
source§fn default() -> GetJobDetailsOutputBuilder
fn default() -> GetJobDetailsOutputBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for GetJobDetailsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetJobDetailsOutputBuilder
impl RefUnwindSafe for GetJobDetailsOutputBuilder
impl Send for GetJobDetailsOutputBuilder
impl Sync for GetJobDetailsOutputBuilder
impl Unpin for GetJobDetailsOutputBuilder
impl UnwindSafe for GetJobDetailsOutputBuilder
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.