List Topic Refresh Schedules
quicksight_list_topic_refresh_schedules | R Documentation |
Lists all of the refresh schedules for a topic¶
Description¶
Lists all of the refresh schedules for a topic.
Usage¶
Arguments¶
AwsAccountId
[required] The ID of the Amazon Web Services account that contains the topic whose refresh schedule you want described.
TopicId
[required] The ID for the topic that you want to describe. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.
Value¶
A list with the following syntax:
list(
TopicId = "string",
TopicArn = "string",
RefreshSchedules = list(
list(
DatasetId = "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"
)
)
),
Status = 123,
RequestId = "string"
)