Skip to content

Instantly share code, notes, and snippets.

@ccortezb
Created April 1, 2021 03:09
Show Gist options
  • Save ccortezb/8b39965277cd62736df0b7d39243508f to your computer and use it in GitHub Desktop.
Save ccortezb/8b39965277cd62736df0b7d39243508f to your computer and use it in GitHub Desktop.
Dynamodb IAM Permissions Policy
{
"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