Skip to content

Instantly share code, notes, and snippets.

@jeremypruitt
Last active August 19, 2022 18:09
Show Gist options
  • Save jeremypruitt/ab70d78b815eae84e037 to your computer and use it in GitHub Desktop.
Save jeremypruitt/ab70d78b815eae84e037 to your computer and use it in GitHub Desktop.
AWS Lambda function to publish to SNS topic
console.log('Loading function');
var AWS = require('aws-sdk');
AWS.config.region = 'us-west-2';
exports.handler = function(event, context) {
console.log("\n\nLoading handler\n\n");
var sns = new AWS.SNS();
sns.publish({
Message: 'Test publish to SNS from Lambda',
TopicArn: 'TOPIC_ARN'
}, function(err, data) {
if (err) {
console.log(err.stack);
return;
}
console.log('push sent');
console.log(data);
context.done(null, 'Function Finished!');
});
};
@mechazod
Copy link

It works with me but I didn't add the TopicARN.

@bradtchapman
Copy link

Thanks! I adapted this for a project that fires SNS notifications after a file is uploaded to an S3 bucket and triggers a Lambda event. It worked great on the first try after plugging in the TopicARN.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment