Amazon SES configuration set does not exist

Ajris :

i have a strange error with ConfigurationSetDoesNotExist.

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

However i set my policies to be fully allowed on ses.

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

Should I allow it on something more? If yes, what is it and why?

TaiT's :

Your policy is not correct. You miss a couple '*' in order to allow full access:

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

See aws documentation.

Hope it helps!

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=398595&siteId=1