Azure Functions
An Azure service that provides an event-driven serverless compute platform.
5,674 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi,
I am looking for a way to trigger Azure Function using Amazon SQS.
@Palak Gupta (TME) Azure Functions doesn't have an official binding for Amazon SQS, so there is no direct way to achieve this.
You could however use the Logic App Trigger for the same and forward messages to an Azure Service Bus queue, which can be used to trigger an Azure Function using the Service Bus trigger.
If you don't really need the durability of a queue here, you could directly call the Azure Function from your Logic App via HTTP as well.