notifications:AssociateChannel

Write

notifications:AssociateChannel is a Write access-level action in the notifications service. Grants permission to associate a new Channel with a particular NotificationConfiguration

Resource types

ARNs that notifications:AssociateChannel can be scoped to in an IAM policy.

arn:${Partition}:notifications::${Account}:configuration/${NotificationConfigurationId}
NotificationConfiguration

Condition keys

Keys you can use in the Condition block of a policy that grants notifications:AssociateChannel.

aws:ResourceTag/${TagKey} String

Filters access by the tags associated with the resource

Example IAM policy

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

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowNotificationsAssociateChannel",
      "Effect": "Allow",
      "Action": "notifications:AssociateChannel",
      "Resource": "*"
    }
  ]
}

Related actions in notifications

View all notifications actions →