Skip to content

Instantly share code, notes, and snippets.

@mkurian
Created May 17, 2019 23:12
Show Gist options
  • Save mkurian/275ff356ad188fe4b9faf5a583561c9e to your computer and use it in GitHub Desktop.
Save mkurian/275ff356ad188fe4b9faf5a583561c9e to your computer and use it in GitHub Desktop.
{
"AttributeDefinitions": [
{
"AttributeName": "business_id",
"AttributeType": "N"
},
{
"AttributeName": "invoice_id",
"AttributeType": "S"
}
],
"ProvisionedThroughput": {
"WriteCapacityUnits": 5,
"ReadCapacityUnits": 5
},
"TableName": "Invoice",
"KeySchema": [
{
"KeyType": "HASH",
"AttributeName": "business_id"
},
{
"KeyType": "RANGE",
"AttributeName": "invoice_id"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment