diff --git a/examples/2016-10-31/sns_sqs/README.md b/examples/2016-10-31/sns_sqs/README.md index 04905cb49..0a31e527c 100644 --- a/examples/2016-10-31/sns_sqs/README.md +++ b/examples/2016-10-31/sns_sqs/README.md @@ -15,5 +15,5 @@ After your CloudFormation Stack has completed creation, send a message to the SN ```bash YOUR_SNS_TOPIC_ARN=arn:aws:sns:us-east-1:[your_account_id]:[your_topic_name]; \ -aws sqs send-message --target-arn $YOUR_SNS_TOPIC_ARN --message '{ "myMessage": "Hello SAM!" }' -``` \ No newline at end of file +aws sns publish --target-arn $YOUR_SNS_TOPIC_ARN --message '{ "myMessage": "Hello SAM!" }' +```