View on GitHub

reading-notes

Notifications

SNS with Amplify (and Firebase):

Setting up access for Amazon SNS:

Getting started with Amazon SNS:

Publish Amazon SNS Messages Privately:

Implement a fanout messaging scenario using Amazon Simple Notification Service (SNS)and Amazon Simple Queue Service (SQS). In this scenario, messages are “pushed” tomultiple subscribers, which eliminates the need to periodically check or poll forupdates and enables parallel asynchronous processing of the message by thesubscribers.

Publish Amazon SNS Messages Privately:

In some cases, your applications may require higher levels of security and need to be deployed into a private network. Some common cases for private networking and messaging include:

Filter Messages Published to Topics

We will use a fanout messaging pattern using SNS and SQS to decouple the website from the backend systems. To get the event notifications to the right backend system, you could create a separate topic for each type of quote request, then add message routing logic to your publisher. However, this option can result in overly complicated publishers, topic proliferation, and additional overhead in provisioning and managing your SNS topics. SNS message filtering is much simpler!