2022-12-03 12:00:04 +00:00
|
|
|
---
|
|
|
|
tags: [AWS]
|
|
|
|
---
|
|
|
|
|
|
|
|
# AWS Messaging services
|
|
|
|
|
|
|
|
## SNS
|
|
|
|
|
|
|
|
> SNS: Simple Notification Service
|
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
Similar to SQS but the focus is on notifications rather than messages, i.e
|
|
|
|
events that fire when something specific happens, not just a message-send event.
|
|
|
|
It can be used for passing notifications between applications or to persons
|
|
|
|
through SMS, text, push notifications and email.
|
2022-12-03 12:30:05 +00:00
|
|
|
|
2024-02-02 15:58:13 +00:00
|
|
|
**SNS pushes messages out to subscribers while SQS stores the messages until
|
|
|
|
someone reads them.**
|
2024-11-22 15:34:57 +00:00
|
|
|
|
|
|
|
Relation between SNS and SQS - typically paired aren't they.
|