Skip to content

Instantly share code, notes, and snippets.

@markbiek
Created July 24, 2017 13:26
Show Gist options
  • Save markbiek/1217cfa55714d73075c0f393be57bdb2 to your computer and use it in GitHub Desktop.
Save markbiek/1217cfa55714d73075c0f393be57bdb2 to your computer and use it in GitHub Desktop.
{
"AttributeDefinitions": [
{
"AttributeName": "Deleted",
"AttributeType": "S"
},
{
"AttributeName": "Id",
"AttributeType": "S"
}
],
"GlobalSecondaryIndexes": [
{
"IndexName": "Deleted-index",
"Projection": {
"ProjectionType": "ALL"
},
"ProvisionedThroughput": {
"WriteCapacityUnits": 5,
"ReadCapacityUnits": 5
},
"KeySchema": [
{
"KeyType": "HASH",
"AttributeName": "Deleted"
}
]
}
],
"ProvisionedThroughput": {
"WriteCapacityUnits": 5,
"ReadCapacityUnits": 5
},
"TableName": "Items",
"KeySchema": [
{
"KeyType": "HASH",
"AttributeName": "Id"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment