The Data Action throws a 403 Forbidden. The IAM role has lambda:InvokeFunction permission. The policy ARN matches the Lambda. Still getting access denied. Here is the role policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "lambda:InvokeFunction",
"Resource": "arn:aws:lambda:us-west-2:123456789:function:AdherenceCalc"
}
]
}
What am I missing?