一部のAWS SESイベントに対して構成セットイベントの宛先を作成すると、このエラーが発生します。ここで私はses.createConfigurationSetEventDestination()に渡すパラメータです:予期しないキーエラーの原因となるSNSDestination
- ses.createConfigurationSet:
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
これまでの制御フローは以下です()
- sns.createTopic()//使用する新しいTopicArnを作成します。
- ses.createConfigurationSetEventDestination()
These are the docs I'm referencing
以下に追加したnode.js sdkを使って問題なく 'ses.createConfigurationSetEventDestination()'を正常に実行することができました。問題を絞り込み、受け取った全体のエラー応答を追加するためのコード全体を追加できますか? –