events:ListTargetsByRule

List

events:ListTargetsByRule is a List access-level action in the events service. Grants permission to retrieve a list of targets defined for a rule

Resource types

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

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

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

Related actions in events

View all events actions →