Trigger Azure Function using Amazon SQS

Palak Gupta (TME) 0 Reputation points
2023-06-14T20:49:16.12+00:00

Hi,

I am looking for a way to trigger Azure Function using Amazon SQS.

Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
4,733 questions
Azure
Azure
A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.
1,116 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Pramod Valavala 20,611 Reputation points Microsoft Employee
    2023-06-14T22:21:44.2033333+00:00

    @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.

    0 comments No comments