Skip to content

Instantly share code, notes, and snippets.

@nodkrot
nodkrot / aws-sns-example.js
Created July 24, 2016 01:37 — 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();