I am simply trying to publish to an SNS topic using a lambda function. The function code as follows, with ARN being the actual SNS topic ARN:
JavaScript
x
11
11
1
import boto3
2
print('Loading function')
3
4
def lambda_handler(event, context):
5
client = boto3.client('sns')
6
response = client.publish(
7
TargetArn='ARN',
8
Message="Test",
9
)
10
return response
11
The function execution role as access to SNS. In fact I even gave SNS full access. But I keep getting the error:
JavaScript
1
10
10
1
{
2
"errorMessage": "An error occurred (InternalFailure) when calling the Publish operation (reached max retries: 4): Unknown",
3
"errorType": "ClientError",
4
"stackTrace": [
5
" File "/var/task/lambda_function.py", line 6, in lambda_handlern response = client.publish(n",
6
" File "/var/runtime/botocore/client.py", line 316, in _api_calln return self._make_api_call(operation_name, kwargs)n",
7
" File "/var/runtime/botocore/client.py", line 626, in _make_api_calln raise error_class(parsed_response, operation_name)n"
8
]
9
}
10
I do not find any access denied errors in cloudtrail either. Any idea on what is the issue here ?
Edit: Its my bad, I used the subscription ARN instead of the topic ARN causing this issue.
Advertisement
Answer
In case if anyone is facing this issue, make sure you use the correct ARN – use the ARN of the Topic instead of the subscription.