AWS Fundamentals Logo
AWS Fundamentals
AWS::Scheduler::ScheduleGroup

Scheduler ScheduleGroup

Definition of AWS::Scheduler::ScheduleGroup Resource Type

Properties

2 configurable properties. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the schedule group.
CreationDatestringThe time at which the schedule group was created.
LastModificationDatestringThe time at which the schedule group was last modified.
Statestring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Scheduler::ScheduleGroup

Resources:
  MyResource:
    Type: AWS::Scheduler::ScheduleGroup
    Properties:
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

scheduler:TagResourcescheduler:CreateScheduleGroupscheduler:GetScheduleGroupscheduler:ListTagsForResource

read

scheduler:GetScheduleGroupscheduler:ListTagsForResource

update

scheduler:TagResourcescheduler:UntagResourcescheduler:ListTagsForResourcescheduler:GetScheduleGroup

delete

scheduler:DeleteScheduleGroupscheduler:GetScheduleGroupscheduler:DeleteSchedule

list

scheduler:ListScheduleGroups

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceScheduler
Properties6
Required0
TaggingSupported
Primary IDName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

Name

Related Resources

External Links