Skip to content

Instantly share code, notes, and snippets.

@AHaydar
Last active January 7, 2021 23: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 AHaydar/5beddc12c9752dc946015d0d8c950767 to your computer and use it in GitHub Desktop.
Save AHaydar/5beddc12c9752dc946015d0d8c950767 to your computer and use it in GitHub Desktop.
aws dynamodb put-item \
--table-name companies \
--item '{
"CompanyId": { "S": "COMPANY#1" },
"CompanyType": { "S": "PRIVATE" },
"Details": { "M": {
"name": { "S": "Dunder Mifflin" },
"revenue": { "S": "1000000" }
} }
}' \
--return-consumed-capacity TOTAL \
--return-item-collection-metrics SIZE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment