Hubot script for receiving notifications from AWS Simple Notification Service
-
Subscribe Hubot to SNS
hubot-sns adds an endpoint at
/hubot/sns
that receives both subscription requests and notifications . By default, hubot-sns will confirm any subscription requests sent from SNS so you can simply subscribe your hubot in the console and it will automatically start receiving notifications. -
Handle incoming notifications
hubot-sns sends an event when notifications are received. You can use
robot.on
to handle these events. Your event handler can choose to handle all notifications or add individual handlers for specific topics.
module.exports = (robot) ->
robot.on "sns:notification", (msg) -> """ Received notification: TopicArn: #{msg.topicArn} Topic: #{msg.topic} Message Id: #{msg.messageId} Subject: #{msg.subject} Message: #{msg.message} """
robot.on "sns:notification:mytopic", (msg) -> """ Received notification: TopicArn: #{msg.topicArn} Topic: #{msg.topic} Message Id: #{msg.messageId} Subject: #{msg.subject} Message: #{msg.message} """