Simple SQS Standard Example

This example demonstrates how to setup a SQS Standard and send messages through the message body and attributes.

Use Cases

  • Decouple message producers from message consumers.
  • This is one way to architect for scale and reliability.

Setup

  • sls deploy

Usage

  • To print out the logs of the receiver sqs handler on the terminal sls logs -f receiver -t

Modifications

  • It includes the nest framework integration for handling messages
  • It has sample SMS service which is created and injected from nest intended to show SMS sending service working on demand basis.