我正在使用 AWS SES 实施 AWS SNS。
我正在注册调用我的 http 端点处理程序的通知,并且我正在接收完美的通知对象。但是除了通知身份之外,我还想发送我的额外有效负载,这些有效负载可以在注册端点调用时接收。我在nodeJS中做
这是注册通知的片段
var params = {
Identity: 'myemail@mydomain.com', /* required */
NotificationType: 'Bounce', //["Delivery","Bounce","Complaint"], /* required */
SnsTopic: 'arn:aws-arnstring'
};
ses.setIdentityNotificationTopic(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
无论如何要发送额外的参数,比如Identity
and NotificationType
?
提前致谢