Skip to content

Modify Snapshot Schedule

redshift_modify_snapshot_schedule R Documentation

Modifies a snapshot schedule

Description

Modifies a snapshot schedule. Any schedule associated with a cluster is modified asynchronously.

Usage

redshift_modify_snapshot_schedule(ScheduleIdentifier,
  ScheduleDefinitions)

Arguments

ScheduleIdentifier

[required] A unique alphanumeric identifier of the schedule to modify.

ScheduleDefinitions

[required] An updated list of schedule definitions. A schedule definition is made up of schedule expressions, for example, "cron(30 12 *)" or "rate(12 hours)".

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$modify_snapshot_schedule(
  ScheduleIdentifier = "string",
  ScheduleDefinitions = list(
    "string"
  )
)