Skip to content

Instantly share code, notes, and snippets.

View chuckb1789's full-sized avatar

Charlie chuckb1789

View GitHub Profile
@chuckb1789
chuckb1789 / aws-sns-example.js
Created August 4, 2017 16:19 — 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();