AWS Lambda calling SNS
问题 I'm playing with my Amazon Echo and wrote a little function which I hope would text me after a response from my daughter. The code executes fine - but the sns.publish never happens. It fails silently - I can't raise an error. I believe I have the proper IAM permissions and Topic subscriptions. Can someone help? function textMom(kindOfDay){ var message = "Test"; var sns = new AWS.SNS(); console.log("textMethod") sns.publish({ TopicArn: "arn:aws:sns:us-east-1:", Message: message }, function(err