Skip to content

Instantly share code, notes, and snippets.

@jac18281828
Created November 20, 2018 19:40
Show Gist options
  • Select an option

  • Save jac18281828/487f3c86fa24ebc5c3f7ac5a0702bfb9 to your computer and use it in GitHub Desktop.

Select an option

Save jac18281828/487f3c86fa24ebc5c3f7ac5a0702bfb9 to your computer and use it in GitHub Desktop.
Dynamodb table schema json
{
"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