DEV Community

Cover image for Implementation of a notification system using AWS - SNS and SQS setup

Implementation of a notification system using AWS - SNS and SQS setup

Architecture diagram

INTRODUCTION

In this post, we'll walk through the steps to set up Amazon SNS and SQS to handle email notifications. This setup will allow you to send messages to an SQS queue via SNS, which can then be processed by a Lambda function.

Resources to be created

  • SNS (Simple Notification System)

  • SQS (Simple Queue Service)

Step 1
From the AWS console, navigate to the SNS dashboard and create a topic called emailNotificationTopic.

  • Choose sns-type standard
  • Enter the sns topic name emailNotificationTopic and display name (optional).
  • Then click on create topic.
  • On the emailNotificationTopic page, scroll down a bit and locate the access policy tab. Edit the access policy by adding the policy below
{
  "Version": "2008-10-17",
  "Id": "__default_policy_ID",
  "Statement": [
    {
      "Sid": "__default_statement_ID",
      "Effect": "Allow",
      "Principal": {
        "AWS": "*"
      },
      "Action": [
        "SNS:Publish",
        "SNS:RemovePermission",
        "SNS:SetTopicAttributes",
        "SNS:DeleteTopic",
        "SNS:ListSubscriptionsByTopic",
        "SNS:GetTopicAttributes",
        "SNS:AddPermission",
        "SNS:Subscribe"
      ],
      "Resource": "arn:aws:sns:REGION:ACCOUNT_ID:TOPIC_NAME",
      "Condition": {
        "StringEquals": {
          "AWS:SourceOwner": "ACCOUNT_ID"
        }
      }
    }
  ]
}
Enter fullscreen mode Exit fullscreen mode

Check the images below for pictorial reference

Image One

Image Two

Image Three

Image Four

picture reference

Step 2
Create an SQS queue that receives and stores the messages sent from the SNS topic until it is consumed.

  • Choose queue-type standard
  • Enter the sqs name emailNotificationQueue.
  • Then click on create queue.
  • On the emailNotificationQueue page, scroll down a bit and locate the access policy tab. Edit the access policy by adding the policy below
{
  "Version": "2008-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Principal": {
        "Service": "sns.amazonaws.com"
      },
      "Action": "sqs:SendMessage",
      "Resource": "arn:aws:sqs:REGION:ACCOUNT_ID:QUEUE_NAME",
      "Condition": {
        "ArnEquals": {
          "aws:SourceArn": "arn:aws:sns:REGION:ACCOUNT_ID:TOPIC_NAME"
        }
      }
    }
  ]
}
Enter fullscreen mode Exit fullscreen mode

Leave everything else as it is. We will update it later.
Check the images below for pictorial reference

Image Five

Image 6

Image 7

Image 8

picture reference

SUBSCRIPTION
In this section, we will subscribe the sqs queue to the sns topic so that the queue can consume any message from the topic.
Subscribe queue to SNS

  • Click on the sns topic you created, scroll down a bit and click on the subscription tab.
  • Click on create subscription, fill in the details and click on create. See images below for reference

picture reference

picture reference

CONCLUSION

By following these steps, you've successfully set up an SNS topic and an SQS queue, and subscribed the queue to the topic. In the next post, we'll cover how to create a Lambda function to process these messages and send emails using Amazon SES.

Image of Timescale

📊 Benchmarking Databases for Real-Time Analytics Applications

Benchmarking Timescale, Clickhouse, Postgres, MySQL, MongoDB, and DuckDB for real-time analytics. Introducing RTABench 🚀

Read full post →

Top comments (0)

Best Practices for Running  Container WordPress on AWS (ECS, EFS, RDS, ELB) using CDK cover image

Best Practices for Running Container WordPress on AWS (ECS, EFS, RDS, ELB) using CDK

This post discusses the process of migrating a growing WordPress eShop business to AWS using AWS CDK for an easily scalable, high availability architecture. The detailed structure encompasses several pillars: Compute, Storage, Database, Cache, CDN, DNS, Security, and Backup.

Read full post

👋 Kindness is contagious

Explore a trove of insights in this engaging article, celebrated within our welcoming DEV Community. Developers from every background are invited to join and enhance our shared wisdom.

A genuine "thank you" can truly uplift someone’s day. Feel free to express your gratitude in the comments below!

On DEV, our collective exchange of knowledge lightens the road ahead and strengthens our community bonds. Found something valuable here? A small thank you to the author can make a big difference.

Okay