Skip to content

Instantly share code, notes, and snippets.

View GrantWatts's full-sized avatar

Grant Watts GrantWatts

  • Distributor Data Solutions
  • Salt Lake City, Utah
View GitHub Profile
@GrantWatts
GrantWatts / aws-sns-example.js
Created January 3, 2017 22:04 — forked from tmarshall/aws-sns-example.js
aws-sdk sns example, in Node.js
var AWS = require('aws-sdk');
AWS.config.update({
accessKeyId: '{AWS_KEY}',
secretAccessKey: '{AWS_SECRET}',
region: '{SNS_REGION}'
});
var sns = new AWS.SNS();