Section 19: AWS Integration & Messaging: SQS, SNS & Kinesis: SNS Flashcards
What aws service do you use if you want to send one message to many receivers? Please get the acryonym and full name.
Smiple Notification Service. SNS
What aws service goes where the yellow box is?
AWS SNS
Can you use an SNS topic to send a message to an SQS queue?
Yes
What do they call SNS things? like, the big thing, like if you’re using SNS, you have an SNS what?
Topic
T/F
SNS is for pub/sub models (aws called them pub/sub messaging paradigms, in case you see that later).
True
When you’re using SNS and you have a topic, what is the industry/aws name for the thing that gets your message to the topic?
Event producer
What is and event producer, in terms of aws sns
it’s the thing that gets your messages to your SNS tpoic.
How many topics can an event producer send a message to?
just one.
How many event receivers can subscribe to (listen to) an SNS topic? (i get the feeling it’s more specifically called listening to an SNS topic’s notifications).
up to 12,500,000
Is an event producer the publisher or the subscriber in a pub/sub model?
Publisher.
how many SNS topics have you have at a time?
100,000 per account.
Does each suscriber to the topic get all the message sent out by a topic?
Yes. Though there is a new feature to filter messages (or there will be one, soon).
T/F
SNS is for queue type models.
False. It’s for pub/sub models.
T/F
The Amazon SNS service can support a wide variety of needs including event notification, monitoring applications, workflow systems, time-sensitive (including real-time) information updates, mobile applications, and any other application that generates or consumes notifications.
T
- Is SNS limited in what you can use it with?
- How might you use with an ASG?
- WIth an S3 bucket?
- It doesn’t seem to be.
- ASG notifications could be published to an SNS topic
- S3 bucket events could be published to an SNS topic
- Is SNS limited in what you can use it with?
- With CloudFormation?
- With AWS DMS?
- It doesn’t seem to be.
- CloudFormation State Changes could be published to an SNS topic
- AWS DMS New Replica things could be published to an SNS topic.
There are two main methods of publishing using SNS, what are they? (just names, will ask for details later)
- Topic Publish (using the SDK)
- Direct Publish (for mobile apps SDK)
Are these the super broad steps for using SNS Topic Publish, or for using SNS Direct Publish?
- create a topic
- create a subscription
- publish to the topic
Topic Publish (which, again, you need the SDK for)