1 Answer
- Newest
- Most votes
- Most comments
0
SQS Messages are processed can be used in one of 2 ways.
- A running process that is Polling the Queue for messages
- A Lambda that is triggered when there are messages to process.
If you want to all an API call when a message arrives. You likely need a small lambda that will call the Web API directly converting the SQS message in the queue to the format you need for the API call.
There is an awesome free course provided by AWS on .NET Lambdas that really covers all the details. It's the one with Lambda's on this page: https://aws.amazon.com/developer/language/net/badges-and-training/
Relevant content
- AWS OFFICIALUpdated 2 months ago

Thanks! you solved my confused!