Amazon SES 配置集不存在

Amazon SES configuration set does not exist

我有一个关于 ConfigurationSetDoesNotExist 的奇怪错误。

Configuration set ... does not exist. (Service: AmazonSimpleEmailService; Status Code: 400; Error Code: ConfigurationSetDoesNotExist;

但是我将我的策略设置为在 ses 上完全允许。

  "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ses:"
            ],
            "Resource": ""
        }

我应该允许它在更多的东西上吗?如果是,那是什么,为什么?

您的政策不正确。您错过了一对“*”以允许完全访问:

"Statement": [
{
    "Effect": "Allow",
    "Action": [
      "ses:*"
    ],
    "Resource": "*"
}

参见aws documentation

希望对您有所帮助!