0

Does AWS offer a service for real-time publish&subscribe messaging for end clients? (web, mobile, desktop). I'm looking for something that is topic based, optionally with a statfull model of data, where clients can subscribe to topics, receive data published on these topics at real time, etc. (similar to what Google Firebase offers). Thanks.

1 Answers1

0

Yes. Amazon Simple Notification Service (SNS) provides:

  • Topic creation
  • Publishing of messages to the topic
  • Subscription to a topic via:
    • Email
    • HTTP/S endpoint (effectively, a REST call)
    • SMS
    • Sending to an Amazon SQS queue
    • Triggering an AWS Lambda function
    • Sending mobile notifications (iOS, Android, Baidu, Windows mobile, Windows desktop, Mac desktop)
John Rotenstein
  • 241,921
  • 22
  • 380
  • 470