Skip to content

Describe Topic Refresh Schedule

quicksight_describe_topic_refresh_schedule R Documentation

Deletes a topic refresh schedule

Description

Deletes a topic refresh schedule.

Usage

quicksight_describe_topic_refresh_schedule(AwsAccountId, TopicId,
  DatasetId)

Arguments

AwsAccountId

[required] The Amazon Web Services account ID.

TopicId

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

DatasetId

[required] The ID of the dataset.

Value

A list with the following syntax:

list(
  TopicId = "string",
  TopicArn = "string",
  DatasetArn = "string",
  RefreshSchedule = list(
    IsEnabled = TRUE|FALSE,
    BasedOnSpiceSchedule = TRUE|FALSE,
    StartingAt = as.POSIXct(
      "2015-01-01"
    ),
    Timezone = "string",
    RepeatAt = "string",
    TopicScheduleType = "HOURLY"|"DAILY"|"WEEKLY"|"MONTHLY"
  ),
  Status = 123,
  RequestId = "string"
)

Request syntax

svc$describe_topic_refresh_schedule(
  AwsAccountId = "string",
  TopicId = "string",
  DatasetId = "string"
)