Created
April 1, 2021 03:09
-
-
Save ccortezb/8b39965277cd62736df0b7d39243508f to your computer and use it in GitHub Desktop.
Dynamodb IAM Permissions Policy
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": "id", | |
"AttributeType": "S" | |
} | |
], | |
"ProvisionedThroughput": { | |
"WriteCapacityUnits": 5, | |
"ReadCapacityUnits": 5 | |
}, | |
"TableName": "booksv2", | |
"KeySchema": [ | |
{ | |
"KeyType": "HASH", | |
"AttributeName": "id" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment