Want to disable SES service for my account?

0

How can I disable SES services from my account?

eqwal
質問済み 2年前1740ビュー
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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ