如何限制某些用户的访问权限,使其仅在 SES 上操作,而不是在我的 AWS 账户上的其他服务上操作?
示例:
{
"Version": "2021-12-16",
"Statement": [
{
"Sid": "AllowsSES",
"Effect": "Allow",
"Action": "ses:*",
"Resource": "*"
},
{
"Sid": "DenyAllOthers",
"Effect": "Deny",
"Action": "*",
"Resource": "*"
}
]
}