Book Image

AWS Certified Developer - Associate Guide

By : Vipul Tankariya, Bhavin Parmar
Book Image

AWS Certified Developer - Associate Guide

By: Vipul Tankariya, Bhavin Parmar

Overview of this book

AWS Certified Developer - Associate Guide starts with a quick introduction to AWS and the prerequisites to get you started. Then, this book gives you a fair understanding of core AWS services and basic architecture. Next, this book will describe about getting familiar with Identity and Access Management (IAM) along with Virtual private cloud (VPC). Moving ahead you will learn about Elastic Compute cloud (EC2) and handling application traffic with Elastic Load Balancing (ELB). Going ahead you we will talk about Monitoring with CloudWatch, Simple storage service (S3) and Glacier and CloudFront along with other AWS storage options. Next we will take you through AWS DynamoDB – A NoSQL Database Service, Amazon Simple Queue Service (SQS) and CloudFormation Overview. Finally, this book covers understanding Elastic Beanstalk and overview of AWS lambda. At the end of this book, we will cover enough topics, tips and tricks along with mock tests for you to be able to pass the AWS Certified Developer - Associate exam and develop as well as manage your applications on the AWS platform.
Table of Contents (29 chapters)
Title Page
Credits
About the Author
Acknowledgments
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Dedication
Preface
Index

Managing access to Amazon SNS topics


Amazon SNS supports multiple protocols such as HTTP, HTTPS, Email, Email-JSON, Amazon SQS, Application, AWS Lambda, and SMS. SNS subscribers can receive the message or notification over one of the supported protocols. Apart from the protocols, SNS also provides topic policy, which can be used to control who can subscribe or publish to a topic. The subsequent point describes when to use the topic policy for access control over an SNS topic.

When to use access control

The access control policy helps to define the way to control access to an SNS topic. There can be a number of scenarios where you may need to use the access control policy for an SNS topic. Here are some examples:

  • You can use access control policy when you want to allow an IAM user to publish a message to one or more SNS topics. This IAM user can be in the same or a different AWS account.
  • SNS topics allows subscribers to use multiple supported protocols. With the help of the access control policy...