1 Answer
- Newest
- Most votes
- Most comments
2
Hi,
when you run an AWS Lambda function, the function assumes a AWS IAM role. This is called the function execution role. The function has only the permissions that are defined in that role, regardless of what the permissions of your IAM user or role are. Please check the IAM role of the function and make sure that the correct permissions are assigned.
You can find more information here: https://docs.aws.amazon.com/lambda/latest/dg/lambda-intro-execution-role.html
Relevant content
- asked a year ago
- asked 3 months ago
- AWS OFFICIALUpdated 3 months ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 5 months ago
Thanks a lot for your response. Seems like I rushed through the creation of the function.