2 Answers
- Newest
- Most votes
- Most comments
2
If your view is similar to below, then ensure that you enable a DynamoDB stream on at least one table.
If you don't get that far, ensure the role you are creating the trigger with has the necessary DynamoDB roles, such as ListTables/DescribeTable/ListStreams/DescribeStream
0
Does your Lambda have the proper policy in place? Your lambda needs to have access to the following operations on the dynamodb db stream arn
["dynamodb:GetRecords", "dynamodb:GetShardIterator", "dynamodb:DescribeStream", "dynamodb:ListStreams"]
answered a year ago
I have updated the question by including the image. Hopefully u can help me to solve it. Thank you~
Relevant content
- Accepted Answerasked a year ago
- asked 2 years ago
- AWS OFFICIALUpdated 10 months ago
- Why can't I view the EventBridge trigger in my Lambda function that my CloudFormation stack created?AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
I have updated the question by including the image. Hopefully u can help me to solve it. Thank you~
Your role needs the permissions I mentioned.