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/
answered a year ago
Relevant content
- Accepted Answerasked 3 years ago
- Accepted Answerasked 4 years ago
- AWS OFFICIALUpdated 8 months ago
- AWS OFFICIALUpdated 5 months ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
Thanks! you solved my confused!