AWS IAM Policy JSON for Event Management

This snippet defines an AWS IAM policy in JSON format that allows various actions on event rules and targets.
 avatar
user_0659028
json
a month ago
342 B
1
Indexable
{ 
  "Version": "2012-10-17", 
  "Statement": [ 
    { 
      "Effect": "Allow", 
      "Action": [ 
        "events:PutRule", 
        "events:PutTargets", 
        "events:DescribeRule", 
        "events:ListRules", 
        "events:PutEvents", 
        "events:RemoveTargets" 
      ], 
      "Resource": "*" 
    } 
  ] 
}
Leave a Comment