LivingRobot
LivingRobot

Reputation: 913

Add IAM Policy to DynamoDB Table

Is there a way to add a policy to a Dynamo table itself -- similar to how I can add a Bucket policy directly onto an S3 bucket. I want to prevent anybody from doing anything to my table that I don't want them doing. I know that I can specify my own roles etc. but how do I do this on the table itself?

Thanks!

Upvotes: 1

Views: 1367

Answers (1)

tankthinks
tankthinks

Reputation: 1001

No. S3, and other older services like SQS, is actually the outlier here. Most AWS services don't have policies on the resources themselves, preferring to use IAM to control access. The DynamoDB Security Best Practices page has good recommendations.

Upvotes: 3

Related Questions