Struct aws_sdk_dynamodb::types::Put
source · #[non_exhaustive]pub struct Put {
pub item: HashMap<String, AttributeValue>,
pub table_name: String,
pub condition_expression: Option<String>,
pub expression_attribute_names: Option<HashMap<String, String>>,
pub expression_attribute_values: Option<HashMap<String, AttributeValue>>,
pub return_values_on_condition_check_failure: Option<ReturnValuesOnConditionCheckFailure>,
}
Expand description
Represents a request to perform a PutItem
operation.
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.item: HashMap<String, AttributeValue>
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.
table_name: String
Name of the table in which to write the item. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
condition_expression: Option<String>
A condition that must be satisfied in order for a conditional update to succeed.
expression_attribute_names: Option<HashMap<String, String>>
One or more substitution tokens for attribute names in an expression.
expression_attribute_values: Option<HashMap<String, AttributeValue>>
One or more values that can be substituted in an expression.
return_values_on_condition_check_failure: Option<ReturnValuesOnConditionCheckFailure>
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the Put
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
Implementations§
source§impl Put
impl Put
sourcepub fn item(&self) -> &HashMap<String, AttributeValue>
pub fn item(&self) -> &HashMap<String, AttributeValue>
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.
sourcepub fn table_name(&self) -> &str
pub fn table_name(&self) -> &str
Name of the table in which to write the item. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
sourcepub fn condition_expression(&self) -> Option<&str>
pub fn condition_expression(&self) -> Option<&str>
A condition that must be satisfied in order for a conditional update to succeed.
sourcepub fn expression_attribute_names(&self) -> Option<&HashMap<String, String>>
pub fn expression_attribute_names(&self) -> Option<&HashMap<String, String>>
One or more substitution tokens for attribute names in an expression.
sourcepub fn expression_attribute_values(
&self,
) -> Option<&HashMap<String, AttributeValue>>
pub fn expression_attribute_values( &self, ) -> Option<&HashMap<String, AttributeValue>>
One or more values that can be substituted in an expression.
sourcepub fn return_values_on_condition_check_failure(
&self,
) -> Option<&ReturnValuesOnConditionCheckFailure>
pub fn return_values_on_condition_check_failure( &self, ) -> Option<&ReturnValuesOnConditionCheckFailure>
Use ReturnValuesOnConditionCheckFailure
to get the item attributes if the Put
condition fails. For ReturnValuesOnConditionCheckFailure
, the valid values are: NONE and ALL_OLD.
Trait Implementations§
impl StructuralPartialEq for Put
Auto Trait Implementations§
impl Freeze for Put
impl RefUnwindSafe for Put
impl Send for Put
impl Sync for Put
impl Unpin for Put
impl UnwindSafe for Put
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