Struct aws_sdk_dynamodb::types::builders::TransactWriteItemBuilder
source · #[non_exhaustive]pub struct TransactWriteItemBuilder { /* private fields */ }
Expand description
A builder for TransactWriteItem
.
Implementations§
source§impl TransactWriteItemBuilder
impl TransactWriteItemBuilder
sourcepub fn condition_check(self, input: ConditionCheck) -> Self
pub fn condition_check(self, input: ConditionCheck) -> Self
A request to perform a check item operation.
sourcepub fn set_condition_check(self, input: Option<ConditionCheck>) -> Self
pub fn set_condition_check(self, input: Option<ConditionCheck>) -> Self
A request to perform a check item operation.
sourcepub fn get_condition_check(&self) -> &Option<ConditionCheck>
pub fn get_condition_check(&self) -> &Option<ConditionCheck>
A request to perform a check item operation.
sourcepub fn set_delete(self, input: Option<Delete>) -> Self
pub fn set_delete(self, input: Option<Delete>) -> Self
A request to perform a DeleteItem
operation.
sourcepub fn get_delete(&self) -> &Option<Delete>
pub fn get_delete(&self) -> &Option<Delete>
A request to perform a DeleteItem
operation.
sourcepub fn set_update(self, input: Option<Update>) -> Self
pub fn set_update(self, input: Option<Update>) -> Self
A request to perform an UpdateItem
operation.
sourcepub fn get_update(&self) -> &Option<Update>
pub fn get_update(&self) -> &Option<Update>
A request to perform an UpdateItem
operation.
sourcepub fn build(self) -> TransactWriteItem
pub fn build(self) -> TransactWriteItem
Consumes the builder and constructs a TransactWriteItem
.
Trait Implementations§
source§impl Clone for TransactWriteItemBuilder
impl Clone for TransactWriteItemBuilder
source§fn clone(&self) -> TransactWriteItemBuilder
fn clone(&self) -> TransactWriteItemBuilder
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 TransactWriteItemBuilder
impl Debug for TransactWriteItemBuilder
source§impl Default for TransactWriteItemBuilder
impl Default for TransactWriteItemBuilder
source§fn default() -> TransactWriteItemBuilder
fn default() -> TransactWriteItemBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for TransactWriteItemBuilder
impl PartialEq for TransactWriteItemBuilder
source§fn eq(&self, other: &TransactWriteItemBuilder) -> bool
fn eq(&self, other: &TransactWriteItemBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TransactWriteItemBuilder
Auto Trait Implementations§
impl Freeze for TransactWriteItemBuilder
impl RefUnwindSafe for TransactWriteItemBuilder
impl Send for TransactWriteItemBuilder
impl Sync for TransactWriteItemBuilder
impl Unpin for TransactWriteItemBuilder
impl UnwindSafe for TransactWriteItemBuilder
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.