events:DeleteRule

Write

events:DeleteRule is a Write access-level action in the events service. Grants permission to delete rules

Resource types

ARNs that events:DeleteRule can be scoped to in an IAM policy.

arn:${Partition}:events:${Region}:${Account}:rule/${EventBusName}/${RuleName}
rule-on-custom-event-bus
arn:${Partition}:events:${Region}:${Account}:rule/${RuleName}
rule-on-default-event-bus

Condition keys

Keys you can use in the Condition block of a policy that grants events:DeleteRule.

aws:ResourceTag/${TagKey} String

Filters access by tag-value associated with the resource to event bus and rule actions

Example IAM policy

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

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowEventsDeleteRule",
      "Effect": "Allow",
      "Action": "events:DeleteRule",
      "Resource": "*"
    }
  ]
}

Related actions in events

View all events actions →