AmazonServiceException: User is not authorized to perform: dynamodb:DescribeTable Status Code: 400; Error Code: AccessDeniedException

前端 未结 3 904
一向
一向 2021-02-05 11:38

I had originally thought that this issue was due to mismatching regions, but after changing the region, I\'m still coming across the following error when trying out an Amazon AW

相关标签:
3条回答
  • 2021-02-05 12:09

    In my case, my table name included a "/" character, which is invalid. Removing the "/" character from the table name resolved the issue.

    0 讨论(0)
  • 2021-02-05 12:19

    You can instead assign permission to the lambda's role like this:

    0 讨论(0)
  • 2021-02-05 12:21

    Worked with an Amazon engineer and it turns out the problem was in the policy configuration:

    "dynamodb: *"
    

    should be

    "dynamodb:*"
    

    It's amazing what a space can do.

    0 讨论(0)
提交回复
热议问题