Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am splicefracture on github.
  • I am splicefracture_ (https://keybase.io/splicefracture_) on keybase.
  • I have a public key ASBOqYbl3g4mW5jzywsKeEz5YsX0smiTFG8xDUsQtQo9ygo

To claim this, I am signing this object:

@splicefracture
splicefracture / aws-sns-example.js
Created June 28, 2016 17:47 — 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();