- Newest
- Most votes
- Most comments
No. One key point here is when the subscribing a https endpoint to sns it needs to verify the subscription.
When a https endpoint is added to sns, sns posts a message to the endpoint with a confirmation url. So long as you can parse that url and either the webhook or via manually launching the url link no lambda function will be required.
Also the https webhook needs to know how to handle sns messages.
Hello,
you don't need a Lambda function. Here's how to set up SNS with an HTTPS webhook:
Create SNS Topic: Create a new SNS topic in AWS.
Subscribe HTTPS Endpoint: Subscribe your HTTPS webhook URL to the SNS topic.
Confirm Subscription: SNS sends a confirmation URL to the webhook. Either your webhook should handle this or you can manually confirm it.
Send Messages: Ensure your webhook can handle SNS messages, then publish to the topic.
That's it! No Lambda needed.
Relevant content
asked 2 years ago
asked 2 years ago
asked 7 years ago
- AWS OFFICIALUpdated 4 months ago
- AWS OFFICIALUpdated 2 years ago
