AWS Simple Notification Service lets you send SMS text messages to a mobile phone number.
You will need to grant SNS permissions via IAM;
- From the AWS console, click on IAM
- Locate and click on the role you use with your Lambda functions, such as "lambda_basic_execution"
- Click the "Attach Policy" button
- For a quick demo, filter on "sns" and attach the AmazonSNSFullAccess policy.
- For a production scenario, choose a more fine-grained policy granting access to certain resources.
- Modify the destination mobile addresses, and the body text.
Before testing your skill, you will need to add permissions to your IAM Role to allow your Lambda function to call to SNS. See the IAM Policies guide and add the AmazonSESFullAccess
policy.
*You can learn more about SES from the [Getting Started with SES](http://docs.aws.amazon.com/ses/latest/DeveloperGuide/getting-started.html) documentation.*
Back to the Home Page