Skip to content

Create Topic Refresh Schedule

quicksight_create_topic_refresh_schedule R Documentation

Creates a topic refresh schedule

Description

Creates a topic refresh schedule.

Usage

quicksight_create_topic_refresh_schedule(AwsAccountId, TopicId,
  DatasetArn, DatasetName, RefreshSchedule)

Arguments

AwsAccountId

[required] The ID of the Amazon Web Services account that contains the topic you're creating a refresh schedule for.

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.

DatasetArn

[required] The Amazon Resource Name (ARN) of the dataset.

DatasetName

The name 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$create_topic_refresh_schedule(
  AwsAccountId = "string",
  TopicId = "string",
  DatasetArn = "string",
  DatasetName = "string",
  RefreshSchedule = list(
    IsEnabled = TRUE|FALSE,
    BasedOnSpiceSchedule = TRUE|FALSE,
    StartingAt = as.POSIXct(
      "2015-01-01"
    ),
    Timezone = "string",
    RepeatAt = "string",
    TopicScheduleType = "HOURLY"|"DAILY"|"WEEKLY"|"MONTHLY"
  )
)