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!');
});
};
@xavrr
Copy link

xavrr commented Mar 19, 2016

nice thanks!

@ravindranathakila
Copy link

Could
var sns = new AWS.SNS();
be a field variable?

@kyletolle
Copy link

Thanks! This was very helpful to help me send a text message from a Lambda function.

@nickheppleston
Copy link

Any thoughts on how we can externalize the TOPIC_ARN property?

@IJNtap
Copy link

IJNtap commented Aug 22, 2016

For some reason, as soon as I tested that code, I got more than 800 push messages on every device and it doesn't stop. What can I do to fix it and to stop retrieving anymore push messages?

@sjvkishore
Copy link

I hope you might using the same Lambda function for both write and subscribe to a topic, it leads to - endless loop

@yogitado
Copy link

Where I can see message published to SNS topic?

@johnelliott
Copy link

Is using aws-sdk the intended way to publish to SNS? SNS can be a trigger for a function, yet I haven't seen a corresponding way to generate SNS messages.

@ashish-nodejs
Copy link

i want to send push run time of lambda code .Ex i post job and on success i want to send push to predefine deviceIds .
what is the way with SNS plz tell me

@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