Skip to content

Instantly share code, notes, and snippets.

@sebsto
Created October 5, 2019 13:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sebsto/ceccba054f165c78e5b41368dc55642b to your computer and use it in GitHub Desktop.
Save sebsto/ceccba054f165c78e5b41368dc55642b to your computer and use it in GitHub Desktop.
Amazon DynamoDB batch write
{
"demo-global-table": [
{
"PutRequest": {
"Item": {
"id": {"S": "0123456789"},
"firstname": {"S": "Jeff"},
"lastname": {"S": "Barr"}
}
}
},
{
"PutRequest": {
"Item": {
"id": {"S": "0987654321"},
"firstname": {"S": "Sébastien"},
"lastname": {"S": "Stormacq"}
}
}
},
{
"PutRequest": {
"Item": {
"id": {"S": "1357902468"},
"firstname": {"S": "Julien"},
"lastname": {"S": "Simon"}
}
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment