#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for Put
Implementations
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 the item to be written 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.
A map of attribute name to attribute values, representing the primary key of the item to be written 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.
Name of the table in which to write the item.
Name of the table in which to write the item.
A condition that must be satisfied in order for a conditional update to succeed.
A condition that must be satisfied in order for a conditional update to succeed.
Adds a key-value pair to expression_attribute_names
.
To override the contents of this collection use set_expression_attribute_names
.
One or more substitution tokens for attribute names in an expression.
One or more substitution tokens for attribute names in an expression.
Adds a key-value pair to expression_attribute_values
.
To override the contents of this collection use set_expression_attribute_values
.
One or more values that can be substituted in an expression.
pub fn set_expression_attribute_values(
self,
input: Option<HashMap<String, AttributeValue>>
) -> Self
pub fn set_expression_attribute_values(
self,
input: Option<HashMap<String, AttributeValue>>
) -> Self
One or more values that can be substituted in an expression.
pub fn return_values_on_condition_check_failure(
self,
input: ReturnValuesOnConditionCheckFailure
) -> Self
pub fn return_values_on_condition_check_failure(
self,
input: ReturnValuesOnConditionCheckFailure
) -> Self
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the Put
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
pub fn set_return_values_on_condition_check_failure(
self,
input: Option<ReturnValuesOnConditionCheckFailure>
) -> Self
pub fn set_return_values_on_condition_check_failure(
self,
input: Option<ReturnValuesOnConditionCheckFailure>
) -> Self
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the Put
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl UnwindSafe for Builder
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more