Struct aws_sdk_codepipeline::operation::put_approval_result::builders::PutApprovalResultOutputBuilder
source · #[non_exhaustive]pub struct PutApprovalResultOutputBuilder { /* private fields */ }
Expand description
A builder for PutApprovalResultOutput
.
Implementations§
source§impl PutApprovalResultOutputBuilder
impl PutApprovalResultOutputBuilder
sourcepub fn approved_at(self, input: DateTime) -> Self
pub fn approved_at(self, input: DateTime) -> Self
The timestamp showing when the approval or rejection was submitted.
sourcepub fn set_approved_at(self, input: Option<DateTime>) -> Self
pub fn set_approved_at(self, input: Option<DateTime>) -> Self
The timestamp showing when the approval or rejection was submitted.
sourcepub fn get_approved_at(&self) -> &Option<DateTime>
pub fn get_approved_at(&self) -> &Option<DateTime>
The timestamp showing when the approval or rejection was submitted.
sourcepub fn build(self) -> PutApprovalResultOutput
pub fn build(self) -> PutApprovalResultOutput
Consumes the builder and constructs a PutApprovalResultOutput
.
Trait Implementations§
source§impl Clone for PutApprovalResultOutputBuilder
impl Clone for PutApprovalResultOutputBuilder
source§fn clone(&self) -> PutApprovalResultOutputBuilder
fn clone(&self) -> PutApprovalResultOutputBuilder
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 PutApprovalResultOutputBuilder
impl Default for PutApprovalResultOutputBuilder
source§fn default() -> PutApprovalResultOutputBuilder
fn default() -> PutApprovalResultOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PutApprovalResultOutputBuilder
impl PartialEq for PutApprovalResultOutputBuilder
source§fn eq(&self, other: &PutApprovalResultOutputBuilder) -> bool
fn eq(&self, other: &PutApprovalResultOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutApprovalResultOutputBuilder
Auto Trait Implementations§
impl Freeze for PutApprovalResultOutputBuilder
impl RefUnwindSafe for PutApprovalResultOutputBuilder
impl Send for PutApprovalResultOutputBuilder
impl Sync for PutApprovalResultOutputBuilder
impl Unpin for PutApprovalResultOutputBuilder
impl UnwindSafe for PutApprovalResultOutputBuilder
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.