ses:CreateRelay

Write

ses:CreateRelay is a Write access-level action in the ses service. Grants permission to create a SMTP relay

Resource types

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

arn:${Partition}:ses:${Region}:${Account}:mailmanager-smtp-relay/${RelayId}
mailmanager-smtp-relay

Condition keys

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

aws:ResourceTag/${TagKey} String

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

Example IAM policy

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

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

Related actions in ses

View all ses actions →