Database Reference
In-Depth Information
index/*"]
}]
}
Allowing all DynamoDB actions to all the tables
If you want to provide all of the accesses to the users of all the tables, then you need to
create a policy document, as shown in the following code:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"dynamodb:*"
],
"Resource": [
"*"
]
}
]
}
By this time, you will have figured out how easy it is to create policy documents and ap-
ply the same on required groups. As shown earlier, you can simply use a policy generator
provided by AWS to play around with different policies.
Search WWH ::




Custom Search