dynamodb-test
Version:
Create and destroy DynamoDB and Dynalite tables for use in tape tests
16 lines (15 loc) • 415 B
JSON
{
"TableName": "test",
"AttributeDefinitions": [
{"AttributeName": "id", "AttributeType": "S"},
{"AttributeName": "range", "AttributeType": "N"}
],
"KeySchema": [
{"AttributeName": "id", "KeyType": "HASH"},
{"AttributeName": "range", "KeyType": "RANGE"}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 10,
"WriteCapacityUnits": 100
}
}