Created
November 20, 2018 19:40
-
-
Save jac18281828/487f3c86fa24ebc5c3f7ac5a0702bfb9 to your computer and use it in GitHub Desktop.
Dynamodb table schema json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "AttributeDefinitions": [ | |
| { | |
| "AttributeName": "string", | |
| "AttributeType": "string" | |
| } | |
| ], | |
| "GlobalSecondaryIndexes": [ | |
| { | |
| "IndexName": "string", | |
| "KeySchema": [ | |
| { | |
| "AttributeName": "string", | |
| "KeyType": "string" | |
| } | |
| ], | |
| "Projection": { | |
| "NonKeyAttributes": [ "string" ], | |
| "ProjectionType": "string" | |
| }, | |
| "ProvisionedThroughput": { | |
| "ReadCapacityUnits": number, | |
| "WriteCapacityUnits": number | |
| } | |
| } | |
| ], | |
| "KeySchema": [ | |
| { | |
| "AttributeName": "string", | |
| "KeyType": "string" | |
| } | |
| ], | |
| "LocalSecondaryIndexes": [ | |
| { | |
| "IndexName": "string", | |
| "KeySchema": [ | |
| { | |
| "AttributeName": "string", | |
| "KeyType": "string" | |
| } | |
| ], | |
| "Projection": { | |
| "NonKeyAttributes": [ "string" ], | |
| "ProjectionType": "string" | |
| } | |
| } | |
| ], | |
| "ProvisionedThroughput": { | |
| "ReadCapacityUnits": number, | |
| "WriteCapacityUnits": number | |
| }, | |
| "SSESpecification": { | |
| "Enabled": boolean, | |
| "KMSMasterKeyId": "string", | |
| "SSEType": "string" | |
| }, | |
| "StreamSpecification": { | |
| "StreamEnabled": boolean, | |
| "StreamViewType": "string" | |
| }, | |
| "TableName": "string" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment