dynafixtures
Version:
Fixtures for DynamoDB
29 lines • 670 B
JSON
[
{
"AttributeDefinitions": [
{
"AttributeName": "Name",
"AttributeType": "S"
},
{
"AttributeName": "Category",
"AttributeType": "S"
}
],
"TableName": "Forum",
"KeySchema": [
{
"AttributeName": "Name",
"KeyType": "HASH"
},
{
"AttributeName": "Category",
"KeyType": "RANGE"
}
],
"ProvisionedThroughput": {
"ReadCapacityUnits": 5,
"WriteCapacityUnits": 5
}
}
]