以 'AWS.' 或 'Amazon.' 开头的消息属性名称保留供亚马逊使用

Message attribute names starting with 'AWS.' or 'Amazon.' are reserved for use by Amazon

我正在使用 nodejs。根据AWS的documentation,我应该使用以下句子来更改发件人ID:
消息属性:{

'AWS.SNS.SMS.SENDERID': {
  'DataType': 'String',
  'StringValue': 'BLABLA'
}

当我 运行 它时,我得到了这个错误:

ParameterValueInvalid: Message attribute names starting with 'AWS.' or 'Amazon.' are reserved for use by Amazon.

我相信他们可能在制作文档后限制了使用 AWS 的权限,但我找不到其他在线更改 sellerid 的方法。有人对此有解决方案吗?

正确的属性名称是 AWS.SNS.SMS.SenderID,但您使用的是 AWS.SNS.SMS.SENDERID