Skip to content

Create Snapshot Schedule

redshift_create_snapshot_schedule R Documentation

Create a snapshot schedule that can be associated to a cluster and which overrides the default system backup schedule

Description

Create a snapshot schedule that can be associated to a cluster and which overrides the default system backup schedule.

Usage

redshift_create_snapshot_schedule(ScheduleDefinitions,
  ScheduleIdentifier, ScheduleDescription, Tags, DryRun, NextInvocations)

Arguments

ScheduleDefinitions

The definition of the snapshot schedule. The definition is made up of schedule expressions, for example "cron(30 12 *)" or "rate(12 hours)".

ScheduleIdentifier

A unique identifier for a snapshot schedule. Only alphanumeric characters are allowed for the identifier.

ScheduleDescription

The description of the snapshot schedule.

Tags

An optional set of tags you can use to search for the schedule.

DryRun
NextInvocations

Value

A list with the following syntax:

list(
  ScheduleDefinitions = list(
    "string"
  ),
  ScheduleIdentifier = "string",
  ScheduleDescription = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  NextInvocations = list(
    as.POSIXct(
      "2015-01-01"
    )
  ),
  AssociatedClusterCount = 123,
  AssociatedClusters = list(
    list(
      ClusterIdentifier = "string",
      ScheduleAssociationState = "MODIFYING"|"ACTIVE"|"FAILED"
    )
  )
)

Request syntax

svc$create_snapshot_schedule(
  ScheduleDefinitions = list(
    "string"
  ),
  ScheduleIdentifier = "string",
  ScheduleDescription = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  DryRun = TRUE|FALSE,
  NextInvocations = 123
)