scheduler:GetScheduleGroup

Read

scheduler:GetScheduleGroup is a Read access-level action in the scheduler service. Grants permission to view details about an Amazon EventBridge Scheduler schedule group

Resource types

ARNs that scheduler:GetScheduleGroup 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:GetScheduleGroup.

aws:ResourceTag/${TagKey} String

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

Example IAM policy

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

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

Related actions in scheduler

View all scheduler actions →