Struct aws_sdk_dynamodb::types::builders::PutRequestBuilder   
source · #[non_exhaustive]pub struct PutRequestBuilder { /* private fields */ }Expand description
A builder for PutRequest.
Implementations§
source§impl PutRequestBuilder
 
impl PutRequestBuilder
sourcepub fn item(self, k: impl Into<String>, v: AttributeValue) -> Self
 
pub fn item(self, k: impl Into<String>, v: AttributeValue) -> Self
Adds a key-value pair to item.
To override the contents of this collection use set_item.
A map of attribute name to attribute values, representing the primary key of an item to be processed by PutItem. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.
sourcepub fn set_item(self, input: Option<HashMap<String, AttributeValue>>) -> Self
 
pub fn set_item(self, input: Option<HashMap<String, AttributeValue>>) -> Self
A map of attribute name to attribute values, representing the primary key of an item to be processed by PutItem. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.
sourcepub fn get_item(&self) -> &Option<HashMap<String, AttributeValue>>
 
pub fn get_item(&self) -> &Option<HashMap<String, AttributeValue>>
A map of attribute name to attribute values, representing the primary key of an item to be processed by PutItem. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema. If any attributes are present in the item that are part of an index key schema for the table, their types must match the index key schema.
sourcepub fn build(self) -> Result<PutRequest, BuildError>
 
pub fn build(self) -> Result<PutRequest, BuildError>
Consumes the builder and constructs a PutRequest.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for PutRequestBuilder
 
impl Clone for PutRequestBuilder
source§fn clone(&self) -> PutRequestBuilder
 
fn clone(&self) -> PutRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PutRequestBuilder
 
impl Debug for PutRequestBuilder
source§impl Default for PutRequestBuilder
 
impl Default for PutRequestBuilder
source§fn default() -> PutRequestBuilder
 
fn default() -> PutRequestBuilder
source§impl PartialEq for PutRequestBuilder
 
impl PartialEq for PutRequestBuilder
source§fn eq(&self, other: &PutRequestBuilder) -> bool
 
fn eq(&self, other: &PutRequestBuilder) -> bool
self and other values to be equal, and is used
by ==.