eolas/zk/Messaging_services.md

20 lines
534 B
Markdown
Raw Normal View History

2022-12-03 12:00:04 +00:00
---
tags: [AWS]
---
# AWS Messaging services
## SNS
> SNS: Simple Notification Service
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
**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.