AWS SNS (Simple Notification Service) Tutorial
PART 1
1. Creating and Managing an SNS Topic
Example 1: Create an SNS Topic
aws sns create-topic --name MySNSTopic
Explanation
Creates a new SNS topic for messaging.
aws sns create-topic
Requires a unique topic name (MySNSTopic).
--name MySNSTo...
programmingetc.hashnode.dev5 min read