我已为消息传递状态添加了SNS应用程序属性,如下所述:http://docs.aws.amazon.com/sns/latest/dg/sns-msg-status.html
但是我找不到任何关于如何获取已发送通知的日志的示例。
答案 0 :(得分:1)
消息传递状态的SNS日志将发送到Cloudwatch Logs。您可以看到examples of the SNS messages in cloudwatch logs here。
如果您想使用SDK访问日志,Cloudwatch Logs API可以提供访问权限,但具体技术取决于您使用的SDK,因为SDK在不同版本之间有所不同语言/技术平台。
您可能需要SDK中提供的GetLogEvents或FilterLogEvents API调用,例如:
Cloudwatch Logs API页面提供了与其他SDK的链接。