scheduler:UntagResource

Tagging

scheduler:UntagResource is a Tagging access-level action in the scheduler service. Grants permission to untag an Amazon EventBridge Scheduler resource

Resource types

ARNs that scheduler:UntagResource can be scoped to in an IAM policy.

arn:${Partition}:scheduler:${Region}:${Account}:schedule-group/${GroupName}
schedule-group

Condition keys

Keys you can use in the Condition block of a policy that grants scheduler:UntagResource.

aws:ResourceTag/${TagKey} String

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

Example IAM policy

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

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowSchedulerUntagResource",
      "Effect": "Allow",
      "Action": "scheduler:UntagResource",
      "Resource": "*"
    }
  ]
}

Related actions in scheduler

View all scheduler actions →