Skip to content

Update Topic Refresh Schedule

quicksight_update_topic_refresh_schedule R Documentation

Updates a topic refresh schedule

Description

Updates a topic refresh schedule.

Usage

quicksight_update_topic_refresh_schedule(AwsAccountId, TopicId,
  DatasetId, RefreshSchedule)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the topic whose refresh schedule you want to update.

TopicId

[required] The ID of the topic that you want to modify. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.

DatasetId

[required] The ID of the dataset.

RefreshSchedule

[required] The definition of a refresh schedule.

Value

A list with the following syntax:

list(
  TopicId = "string",
  TopicArn = "string",
  DatasetArn = "string",
  Status = 123,
  RequestId = "string"
)

Request syntax

svc$update_topic_refresh_schedule(
  AwsAccountId = "string",
  TopicId = "string",
  DatasetId = "string",
  RefreshSchedule = list(
    IsEnabled = TRUE|FALSE,
    BasedOnSpiceSchedule = TRUE|FALSE,
    StartingAt = as.POSIXct(
      "2015-01-01"
    ),
    Timezone = "string",
    RepeatAt = "string",
    TopicScheduleType = "HOURLY"|"DAILY"|"WEEKLY"|"MONTHLY"
  )
)