Want to disable SES service for my account?

0

How can I disable SES services from my account?

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년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠