#[non_exhaustive]pub struct ExecuteTransactionInput {
pub transact_statements: Option<Vec<ParameterizedStatement>>,
pub client_request_token: Option<String>,
pub return_consumed_capacity: Option<ReturnConsumedCapacity>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.transact_statements: Option<Vec<ParameterizedStatement>>
The list of PartiQL statements representing the transaction to run.
client_request_token: Option<String>
Set this value to get remaining results, if NextToken
was returned in the statement response.
return_consumed_capacity: Option<ReturnConsumedCapacity>
Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response. For more information, see TransactGetItems and TransactWriteItems.
Implementations§
source§impl ExecuteTransactionInput
impl ExecuteTransactionInput
sourcepub fn transact_statements(&self) -> &[ParameterizedStatement]
pub fn transact_statements(&self) -> &[ParameterizedStatement]
The list of PartiQL statements representing the transaction to run.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .transact_statements.is_none()
.
sourcepub fn client_request_token(&self) -> Option<&str>
pub fn client_request_token(&self) -> Option<&str>
Set this value to get remaining results, if NextToken
was returned in the statement response.
sourcepub fn return_consumed_capacity(&self) -> Option<&ReturnConsumedCapacity>
pub fn return_consumed_capacity(&self) -> Option<&ReturnConsumedCapacity>
Determines the level of detail about either provisioned or on-demand throughput consumption that is returned in the response. For more information, see TransactGetItems and TransactWriteItems.
source§impl ExecuteTransactionInput
impl ExecuteTransactionInput
sourcepub fn builder() -> ExecuteTransactionInputBuilder
pub fn builder() -> ExecuteTransactionInputBuilder
Creates a new builder-style object to manufacture ExecuteTransactionInput
.
Trait Implementations§
source§impl Clone for ExecuteTransactionInput
impl Clone for ExecuteTransactionInput
source§fn clone(&self) -> ExecuteTransactionInput
fn clone(&self) -> ExecuteTransactionInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ExecuteTransactionInput
impl Debug for ExecuteTransactionInput
source§impl PartialEq for ExecuteTransactionInput
impl PartialEq for ExecuteTransactionInput
source§fn eq(&self, other: &ExecuteTransactionInput) -> bool
fn eq(&self, other: &ExecuteTransactionInput) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ExecuteTransactionInput
Auto Trait Implementations§
impl Freeze for ExecuteTransactionInput
impl RefUnwindSafe for ExecuteTransactionInput
impl Send for ExecuteTransactionInput
impl Sync for ExecuteTransactionInput
impl Unpin for ExecuteTransactionInput
impl UnwindSafe for ExecuteTransactionInput
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