简体   繁体   中英

Is it possible to call Azure Queue from AWS Lambda

My requirement is to send data received in Lambda from DynamoDB to Azure Queue in node.js.

Steps taken - AWS Side

   1. Created DDB Table
   2. Added Stream and Trigger
   3. Wrote Lambda

Steps taken - Azure Side

1. Created an Azure Queue (Service Bus)

So far so good. I can see DDB Events making its way to Lambda.

Question - My ask is now I want to send these events to Azure Queue, I could not find any online google result for this. Is it possible to put elements in Azure Queue from AWS Lambda. Please guide.

You can use Azure Service Bus REST API in order to send your messages:

POST    http{s}://{serviceNamespace}.servicebus.windows.net/{queuePath|topicPath}/messages

https://docs.microsoft.com/en-us/rest/api/servicebus/send-message-to-queue

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM