Struct aws_sdk_dynamodb::model::batch_statement_request::Builder
source · [−]pub struct Builder { /* private fields */ }
Expand description
A builder for BatchStatementRequest
.
Implementations
sourceimpl Builder
impl Builder
sourcepub fn set_statement(self, input: Option<String>) -> Self
pub fn set_statement(self, input: Option<String>) -> Self
A valid PartiQL statement.
sourcepub fn parameters(self, input: AttributeValue) -> Self
pub fn parameters(self, input: AttributeValue) -> Self
Appends an item to parameters
.
To override the contents of this collection use set_parameters
.
The parameters associated with a PartiQL statement in the batch request.
sourcepub fn set_parameters(self, input: Option<Vec<AttributeValue>>) -> Self
pub fn set_parameters(self, input: Option<Vec<AttributeValue>>) -> Self
The parameters associated with a PartiQL statement in the batch request.
sourcepub fn consistent_read(self, input: bool) -> Self
pub fn consistent_read(self, input: bool) -> Self
The read consistency of the PartiQL batch request.
sourcepub fn set_consistent_read(self, input: Option<bool>) -> Self
pub fn set_consistent_read(self, input: Option<bool>) -> Self
The read consistency of the PartiQL batch request.
sourcepub fn build(self) -> BatchStatementRequest
pub fn build(self) -> BatchStatementRequest
Consumes the builder and constructs a BatchStatementRequest
.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more