AWS CLI SNS使用多个电子邮件地址订阅

时间:2018-01-18 00:58:16

标签: amazon-web-services aws-cli amazon-sns

如何通过CLI订阅包含多个电子邮件地址的SNS主题?

单一订阅进展顺利,如下所示

aws sns subscribe --topic-arn arn:aws:sns:ap-southeast-2:nnnnnn:abcd --protocol email --notification-endpoint  email1@gmail.com

当我尝试使用(或空格)提交多封电子邮件时,它无法正常工作。有可能吗?

2 个答案:

答案 0 :(得分:0)

您也一样,我用两行Cli和两封电子邮件解决了 例如:

  • aws sns subscribe --topic-arn arn:aws:sns:ap-southeast-2:nnnnnn:abcd --protocol email --notification-endpoint email1@gmail.com

  • aws sns subscribe --topic-arn arn:aws:sns:ap-southeast-2:nnnnnn:abcd --protocol email --notification-endpoint email2@gmail.com

答案 1 :(得分:0)

否,这是不可能的。请参阅这两篇文章:

  1. Amazon采用多个订阅端点as a feature request。有人注意到Google GCM API已经具有此功能。
  2. Amazon documentation notes,当前订阅多个电话号码或电子邮件的方式是创建多个订阅。