Struct aws_sdk_dynamodb::operation::update_time_to_live::builders::UpdateTimeToLiveOutputBuilder
source · #[non_exhaustive]pub struct UpdateTimeToLiveOutputBuilder { /* private fields */ }
Expand description
A builder for UpdateTimeToLiveOutput
.
Implementations§
source§impl UpdateTimeToLiveOutputBuilder
impl UpdateTimeToLiveOutputBuilder
sourcepub fn time_to_live_specification(self, input: TimeToLiveSpecification) -> Self
pub fn time_to_live_specification(self, input: TimeToLiveSpecification) -> Self
Represents the output of an UpdateTimeToLive
operation.
sourcepub fn set_time_to_live_specification(
self,
input: Option<TimeToLiveSpecification>,
) -> Self
pub fn set_time_to_live_specification( self, input: Option<TimeToLiveSpecification>, ) -> Self
Represents the output of an UpdateTimeToLive
operation.
sourcepub fn get_time_to_live_specification(&self) -> &Option<TimeToLiveSpecification>
pub fn get_time_to_live_specification(&self) -> &Option<TimeToLiveSpecification>
Represents the output of an UpdateTimeToLive
operation.
sourcepub fn build(self) -> UpdateTimeToLiveOutput
pub fn build(self) -> UpdateTimeToLiveOutput
Consumes the builder and constructs a UpdateTimeToLiveOutput
.
Trait Implementations§
source§impl Clone for UpdateTimeToLiveOutputBuilder
impl Clone for UpdateTimeToLiveOutputBuilder
source§fn clone(&self) -> UpdateTimeToLiveOutputBuilder
fn clone(&self) -> UpdateTimeToLiveOutputBuilder
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 UpdateTimeToLiveOutputBuilder
impl Default for UpdateTimeToLiveOutputBuilder
source§fn default() -> UpdateTimeToLiveOutputBuilder
fn default() -> UpdateTimeToLiveOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for UpdateTimeToLiveOutputBuilder
impl PartialEq for UpdateTimeToLiveOutputBuilder
source§fn eq(&self, other: &UpdateTimeToLiveOutputBuilder) -> bool
fn eq(&self, other: &UpdateTimeToLiveOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateTimeToLiveOutputBuilder
Auto Trait Implementations§
impl Freeze for UpdateTimeToLiveOutputBuilder
impl RefUnwindSafe for UpdateTimeToLiveOutputBuilder
impl Send for UpdateTimeToLiveOutputBuilder
impl Sync for UpdateTimeToLiveOutputBuilder
impl Unpin for UpdateTimeToLiveOutputBuilder
impl UnwindSafe for UpdateTimeToLiveOutputBuilder
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.