作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在为某些 AWS SES 事件创建配置集事件目标时,我遇到了这个错误。这是我传递给 ses.createConfigurationSetEventDestination() 的参数:
const destinationParams = {
ConfigurationSetName: instance.id,
EventDestination: {
Name: instance.id,
MatchingEventTypes: ['send', 'reject', 'bounce', 'complaint', 'delivery', 'open', 'click'],
Enabled: true,
SNSDestination: {
TopicARN: topicArn,
},
},
};
我得到的错误是
UnexpectedParameter: Unexpected key 'SNSDestination' found in params.EventDestination
目前的控制流程如下:
最佳答案
我正在改进我之前的回答:
我配置了 node.js sdk 并尝试重现该问题。我能够成功创建 ConfigurationSet
并设置 EventDestination
。
代码:
var AWS = require('aws-sdk');
AWS.config.update({region:'us-east-1'});
var ses = new AWS.SES();
/*const params1 = {
ConfigurationSet: {
Name: 'test'
}
};
ses.createConfigurationSet(params1, function(err, data) {
if (err) console.log(err, err.stack);
else console.log(data);
}); */
const destinationParams = {
ConfigurationSetName: 'test',
EventDestination: {
Name: 'testevent',
MatchingEventTypes: ['send', 'reject', 'bounce', 'complaint', 'delivery', 'open', 'click'],
Enabled: true,
SNSDestination: {
TopicARN: 'arn:aws:sns:us-east-1:XXXXXXXXXXX:test',
},
},
};
ses.createConfigurationSetEventDestination(destinationParams, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
响应:
{ ResponseMetadata: { RequestId: '838b95ae-af35-11e7-a190-c960102424be' } }
所以node.js sdk没有问题。
关于javascript - SNSDestination 导致意外的键错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46693424/
在为某些 AWS SES 事件创建配置集事件目标时,我遇到了这个错误。这是我传递给 ses.createConfigurationSetEventDestination() 的参数: const de
我正在尝试使用 serverless resources 创建一个 ConfigurationSetEventDestination但它无法识别 EventDestination 的值 SNSDest
我是一名优秀的程序员,十分优秀!