events:DisableRule

Write

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

Resource types

ARNs that events:DisableRule 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:DisableRule.

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:DisableRule. Replace "Resource": "*" with a specific ARN to follow least privilege.

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

Related actions in events

View all events actions →