hubot-sns

0.2.1 • Public • Published

hubot-sns

Build Status

Hubot script for receiving notifications from AWS Simple Notification Service

Quick Start

  1. 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.

  2. 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.

scripts/your_script.coffee

module.exports = (robot) ->

# Handle all notifications robot.on "sns:notification", (msg) -> """ Received notification: TopicArn: #{msg.topicArn} Topic: #{msg.topic} Message Id: #{msg.messageId} Subject: #{msg.subject} Message: #{msg.message} """

# Handle a specific topic (named mytopic in this example): robot.on "sns:notification:mytopic", (msg) -> """ Received notification: TopicArn: #{msg.topicArn} Topic: #{msg.topic} Message Id: #{msg.messageId} Subject: #{msg.subject} Message: #{msg.message} """

Package Sidebar

Install

npm i hubot-sns

Weekly Downloads

0

Version

0.2.1

License

MIT

Last publish

Collaborators

  • mdouglass