Book Image

Amazon Web Services Bootcamp

Book Image

Amazon Web Services Bootcamp

Overview of this book

AWS is at the forefront of Cloud Computing today. Businesses are adopting AWS Cloud because of its reliability, versatility, and flexible design. The main focus of this book is teaching you how to build and manage highly reliable and scalable applications and services on AWS. It will provide you with all the necessary skills to design, deploy, and manage your applications and services on the AWS cloud platform. We’ll start by exploring Amazon S3, EC2, and so on to get you well-versed with core Amazon services. Moving on, we’ll teach you how to design and deploy highly scalable and optimized workloads. You’ll also discover easy-to-follow, hands-on steps, tips, and recommendations throughout the book and get to know essential security and troubleshooting concepts. By the end of the book, you’ll be able to create a highly secure, fault tolerant, and scalable environment for your applications to run on.
Table of Contents (16 chapters)

Topics


An SNS topic is a communication channel where a publisher can publish messages and a subscriber can get messages by subscribing to it. The SNS topic name should be unique to your AWS account. In a single AWS account, we can create up to 100,000 topics.

AWS Management Console

Go to the AWS SNS Management Console at https://console.aws.amazon.com/sns/v2/home and perform the following steps:

  1. Click Topics in the navigation pane on the left.
  2. Click Create new topic:

Figure 8.1: Creating a new topic

Provide details as follows:

  • Topic name: Type in aws-bootcamp. We can add up to 256 alphanumeric characters, hyphens (-), and underscores (_).
  • Display name: Type in bootcamp. The display name can be up to 10 characters only. The display name is used if we have an SMS subscription.
  1. Once the details have been provided, click Create topic:

Figure 8.2: Topic listing

AWS CLI

To execute the CLI script, open Command Prompt.

The following command will create an SNS topic:

aws sns create-topic --name "aws-bootcamp"

The...