Want to disable SES service for my account?

0

How can I disable SES services from my account?

eqwal
已提问 2 年前1739 查看次数
1 回答
0

Hello,

You cannot disable a service per say. What you can do is simply deny access to SES (or not grant permissions to use it, a user by default does not have any permission if you don't explicitly grant it with a policy).

You can also use SCPs (Service Control Policies) in order to deny access to a service at the Org/OU or account levels, using an SCP like:

{    
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "DenyAllSesActions",
      "Effect": "Deny",
      "Action": "ses:*",
      "Resource": "*"
    }
  ]
}
AWS
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则