Struct aws_sdk_dynamodb::operation::execute_transaction::builders::ExecuteTransactionOutputBuilder
source · #[non_exhaustive]pub struct ExecuteTransactionOutputBuilder { /* private fields */ }
Expand description
A builder for ExecuteTransactionOutput
.
Implementations§
source§impl ExecuteTransactionOutputBuilder
impl ExecuteTransactionOutputBuilder
sourcepub fn responses(self, input: ItemResponse) -> Self
pub fn responses(self, input: ItemResponse) -> Self
Appends an item to responses
.
To override the contents of this collection use set_responses
.
The response to a PartiQL transaction.
sourcepub fn set_responses(self, input: Option<Vec<ItemResponse>>) -> Self
pub fn set_responses(self, input: Option<Vec<ItemResponse>>) -> Self
The response to a PartiQL transaction.
sourcepub fn get_responses(&self) -> &Option<Vec<ItemResponse>>
pub fn get_responses(&self) -> &Option<Vec<ItemResponse>>
The response to a PartiQL transaction.
sourcepub fn consumed_capacity(self, input: ConsumedCapacity) -> Self
pub fn consumed_capacity(self, input: ConsumedCapacity) -> Self
Appends an item to consumed_capacity
.
To override the contents of this collection use set_consumed_capacity
.
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
sourcepub fn set_consumed_capacity(self, input: Option<Vec<ConsumedCapacity>>) -> Self
pub fn set_consumed_capacity(self, input: Option<Vec<ConsumedCapacity>>) -> Self
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
sourcepub fn get_consumed_capacity(&self) -> &Option<Vec<ConsumedCapacity>>
pub fn get_consumed_capacity(&self) -> &Option<Vec<ConsumedCapacity>>
The capacity units consumed by the entire operation. The values of the list are ordered according to the ordering of the statements.
sourcepub fn build(self) -> ExecuteTransactionOutput
pub fn build(self) -> ExecuteTransactionOutput
Consumes the builder and constructs a ExecuteTransactionOutput
.
Trait Implementations§
source§impl Clone for ExecuteTransactionOutputBuilder
impl Clone for ExecuteTransactionOutputBuilder
source§fn clone(&self) -> ExecuteTransactionOutputBuilder
fn clone(&self) -> ExecuteTransactionOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ExecuteTransactionOutputBuilder
impl Default for ExecuteTransactionOutputBuilder
source§fn default() -> ExecuteTransactionOutputBuilder
fn default() -> ExecuteTransactionOutputBuilder
source§impl PartialEq for ExecuteTransactionOutputBuilder
impl PartialEq for ExecuteTransactionOutputBuilder
source§fn eq(&self, other: &ExecuteTransactionOutputBuilder) -> bool
fn eq(&self, other: &ExecuteTransactionOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExecuteTransactionOutputBuilder
Auto Trait Implementations§
impl Freeze for ExecuteTransactionOutputBuilder
impl RefUnwindSafe for ExecuteTransactionOutputBuilder
impl Send for ExecuteTransactionOutputBuilder
impl Sync for ExecuteTransactionOutputBuilder
impl Unpin for ExecuteTransactionOutputBuilder
impl UnwindSafe for ExecuteTransactionOutputBuilder
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
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)
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>
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>
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 more