Skip to content

Instantly share code, notes, and snippets.

View shivamarora123's full-sized avatar
🎯
Focusing

Shivam Arora shivamarora123

🎯
Focusing
  • Bangalore
View GitHub Profile
@shivamarora123
shivamarora123 / aws-sns-example.js
Created July 15, 2018 13:54 — 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();