AWS::Redshift::SnapshotSchedule

Redshift SnapshotSchedule

Creates a snapshot schedule that lets you set up automatic snapshots of your Amazon Redshift cluster at regular intervals.

Properties

4 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
ScheduleDefinitions
Array<string>
Required
ScheduleIdentifier
string
RequiredCreate-only
ScheduleDescription
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 snapshot schedule.
AssociatedClusterCountintegerThe number of clusters associated with 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::Redshift::SnapshotSchedule

Resources:
  MyResource:
    Type: AWS::Redshift::SnapshotSchedule
    Properties:
      ScheduleIdentifier: "my-scheduleidentifier"
      ScheduleDefinitions: []
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

redshift:CreateSnapshotScheduleredshift:DescribeSnapshotSchedulesredshift:CreateTags

read

redshift:DescribeSnapshotSchedules

update

redshift:ModifySnapshotScheduleredshift:DescribeSnapshotSchedulesredshift:CreateTagsredshift:DeleteTags

delete

redshift:DeleteSnapshotScheduleredshift:DescribeSnapshotSchedules

list

redshift:DescribeSnapshotSchedules

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

ServiceRedshift
Properties6
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

ScheduleIdentifierScheduleDescription

External Links