我正在建立一个附加到用户以创建工作邮件的策略。
我从允许用户在工作邮件中创建组织开始。
就是这个
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "WorkMailUser",
"Effect": "Allow",
"Action": [
"ds:CreateIdentityPoolDirectory",
"ds:ListAuthorizedApplications",
"ds:DescribeDirectories",
"ds:CreateAlias",
"ds:AuthorizeApplication",
"workmail:CreateOrganization"
],
"Resource": "*"
},
{
"Sid": "WorkMailUser1",
"Effect": "Allow",
"Action": [
"ses:DescribeActiveReceiptRuleSet",
"ses:VerifyDomainIdentity"
],
"Resource": "*"
}
]
}
得到的错误是
arn:aws:iam::* is not authorized to perform ses:SetIdentityEmailNotificationEnabled
当我检查动作时,我找不到它。
如果我更改为ses:*
我可以创建组织。
我需要给我的用户什么权限才能通过ses:SetIdentityEmailNotificationEnabled
?
更新
Wehn 我正在使用 ses 中的所有 7 个设置动作,它仍然无法正常工作。这与单反角色有关吗?