#[non_exhaustive]pub struct BatchStatementRequestBuilder { /* private fields */ }
Expand description
A builder for BatchStatementRequest
.
Implementations§
source§impl BatchStatementRequestBuilder
impl BatchStatementRequestBuilder
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§
source§impl Clone for BatchStatementRequestBuilder
impl Clone for BatchStatementRequestBuilder
source§fn clone(&self) -> BatchStatementRequestBuilder
fn clone(&self) -> BatchStatementRequestBuilder
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 BatchStatementRequestBuilder
impl Debug for BatchStatementRequestBuilder
source§impl Default for BatchStatementRequestBuilder
impl Default for BatchStatementRequestBuilder
source§fn default() -> BatchStatementRequestBuilder
fn default() -> BatchStatementRequestBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<BatchStatementRequestBuilder> for BatchStatementRequestBuilder
impl PartialEq<BatchStatementRequestBuilder> for BatchStatementRequestBuilder
source§fn eq(&self, other: &BatchStatementRequestBuilder) -> bool
fn eq(&self, other: &BatchStatementRequestBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.