ses:GetEmailIdentityPolicies

Read

ses:GetEmailIdentityPolicies is a Read access-level action in the ses service. Grants permission to return the requested sending authorization policies for the given identity (an email address or a domain)

Resource types

ARNs that ses:GetEmailIdentityPolicies can be scoped to in an IAM policy.

arn:${Partition}:ses:${Region}:${Account}:identity/${IdentityName}
identity

Condition keys

Keys you can use in the Condition block of a policy that grants ses:GetEmailIdentityPolicies.

aws:ResourceTag/${TagKey} String

Filters access by tag key-value pairs attached to the resource

Example IAM policy

A minimal policy that allows ses:GetEmailIdentityPolicies. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowSesGetEmailIdentityPolicies",
      "Effect": "Allow",
      "Action": "ses:GetEmailIdentityPolicies",
      "Resource": "*"
    }
  ]
}

Related actions in ses

View all ses actions →