Available on crate feature
aws_lambda_events+0_7
only.Expand description
Support for aws_lambda_events version 0.7
Because aws_lambda_events has not yet reached version 1.0, a feature is required to enable support. Add the following to your dependencies.
[dependencies]
aws_lambda_events = "0.7"
serde_dynamo = { version = "4", features = ["aws_lambda_events+0_7"] }
Functionsยง
- from_
attribute_ value - A version of
crate::from_attribute_value
that accept anaws_lambda_events
-specific AttributeValue instead of aserde_dynamo
-specific AttributeValue. - from_
item - A version of
crate::from_item
that accepts anaws_lambda_events
-specificHashMap<String, AttributeValue>
instead of aserde_dynamo
-specific Item. - from_
items - A version of
crate::from_items
that accepts anaws_lambda_events
-specificVec<HashMap<String, AttributeValue>>
instead of aserde_dynamo
-specific Items. - to_
attribute_ value - A version of
crate::to_attribute_value
that returns anaws_lambda_events
-specific AttributeValue instead of aserde_dynamo
-specific AttributeValue. - to_item
- A version of
crate::to_item
that returns anaws_lambda_events
-specificHashMap<String, AttributeValue>
instead of aserde_dynamo
-specific Item.