skip to Main Content

I would like to restrict access to my dynamodb table. I would want to have the same kind of functionality as with for exmaple with AD groups, you could check if a user is a part of a specific AD group and give access based on that.

What is the idiomatic way in AWS to restrict access to an aws dynamodb where the users are authenticated with cognito?

2

Answers


  1. For any federated access to AWS, the user authenticates via their IdP and gets in return a set of AWS credentials associated with an AWS IAM role. You can use federated user attributes for access control.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search