AWS Fundamentals Logo
AWS Fundamentals
AWS::Scheduler::Schedule

Scheduler Schedule

Definition of AWS::Scheduler::Schedule Resource Type

Properties

11 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
FlexibleTimeWindow
FlexibleTimeWindow
Required
ScheduleExpression
string
Required
Target
Target
Required
Description
string
EndDate
string
GroupName
string
KmsKeyArn
string
Name
string
Create-only
ScheduleExpressionTimezone
string
StartDate
string
State
string

Return Values

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

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the schedule.

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::Schedule

Resources:
  MyResource:
    Type: AWS::Scheduler::Schedule
    Properties:
      FlexibleTimeWindow: "value"
      ScheduleExpression: "value"
      Target: "value"
      Description: !Ref "AWS::StackName"
      Name: !Ref "AWS::StackName"

Required IAM Permissions

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

create

scheduler:CreateSchedulescheduler:GetScheduleiam:PassRole

read

scheduler:GetSchedule

update

scheduler:UpdateSchedulescheduler:GetScheduleiam:PassRole

delete

scheduler:DeleteSchedulescheduler:GetSchedule

list

scheduler:ListSchedules

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
Properties12
Required3
TaggingNot supported
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