Skip to content

Instantly share code, notes, and snippets.

View yelkar-snehal's full-sized avatar
🎯
Focusing

Snehal Yelkar yelkar-snehal

🎯
Focusing
View GitHub Profile
@yelkar-snehal
yelkar-snehal / aws-sns-example.js
Created July 7, 2020 09:31 — 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();