Skip to content

Delete Scheduled Action

redshiftserverless_delete_scheduled_action R Documentation

Deletes a scheduled action

Description

Deletes a scheduled action.

Usage

redshiftserverless_delete_scheduled_action(scheduledActionName)

Arguments

scheduledActionName

[required] The name of the scheduled action to delete.

Value

A list with the following syntax:

list(
  scheduledAction = list(
    endTime = as.POSIXct(
      "2015-01-01"
    ),
    namespaceName = "string",
    nextInvocations = list(
      as.POSIXct(
        "2015-01-01"
      )
    ),
    roleArn = "string",
    schedule = list(
      at = as.POSIXct(
        "2015-01-01"
      ),
      cron = "string"
    ),
    scheduledActionDescription = "string",
    scheduledActionName = "string",
    scheduledActionUuid = "string",
    startTime = as.POSIXct(
      "2015-01-01"
    ),
    state = "ACTIVE"|"DISABLED",
    targetAction = list(
      createSnapshot = list(
        namespaceName = "string",
        retentionPeriod = 123,
        snapshotNamePrefix = "string",
        tags = list(
          list(
            key = "string",
            value = "string"
          )
        )
      )
    )
  )
)

Request syntax

svc$delete_scheduled_action(
  scheduledActionName = "string"
)