Reputation: 111
Is it possible to schedule our push notification through SNS (to send it at a particular time of the day) which we are able to parse or moengage?
Upvotes: 2
Views: 10599
Reputation: 1407
AWS contain EventBridge
service that we can use to send a message to an Amazon SNS
topic on a schedule. Amazon EventBridge
is a serverless event bus service that makes it easy to connect your applications with data from a variety of sources. According to AWS docs, Amazon EventBridge
is the preferred way to manage your events. CloudWatch
Events and EventBridge
are the same underlying service and API, but EventBridge
provides more features.
You can configure the following AWS resources as targets for EventBridge
:
Upvotes: 1
Reputation: 269370
You can use CloudWatch Events to send a message to an Amazon SNS topic on a schedule. (Note: CloudWatch Events is not available in every region.)
CloudWatch Events can be triggered by:
CloudWatch Events can trigger:
See documentation: Using CloudWatch Events
Upvotes: 8