| Crates.io | serde_dynamodb_streams |
| lib.rs | serde_dynamodb_streams |
| version | 0.7.1 |
| created_at | 2021-03-16 05:19:41.590531+00 |
| updated_at | 2021-03-16 07:43:16.738014+00 |
| description | de/serialize struct to HashMap |
| homepage | https://github.com/james-tru/serde_dynamodb_streams |
| repository | https://github.com/james-tru/serde_dynamodb_streams |
| max_upload_size | |
| id | 369535 |
| size | 73,802 |
Library to de/serialize an object to an HashMap of AttributeValues used by rusoto_dynamodb to manipulate objects saved in dynamodb using serde
This is just a fork of https://github.com/mockersf/serde_dynamodb with the dynamodb bits taken out, so that streams can handle rustls
[dependencies]
serde_dynamodb_streams = "0.2.1"
#[derive(Serialize, Deserialize)]
struct Todo {
id: uuid::Uuid,
title: &'static str,
done: bool,
}
let todo = Todo {
id: uuid::Uuid::new_v4(),
title: "publish crate",
done: false,
};
let put_item = PutItemInput {
item: serde_dynamodb::to_hashmap(&todo).unwrap(),
table_name: "todos".to_string(),
..Default::default()
};
let client = DynamoDbClient::simple(Region::UsEast1);
client.put_item(&put_item).unwrap();