List Refresh Schedules
quicksight_list_refresh_schedules | R Documentation |
Lists the refresh schedules of a dataset¶
Description¶
Lists the refresh schedules of a dataset. Each dataset can have up to 5 schedules.
Usage¶
Arguments¶
AwsAccountId
[required] The Amazon Web Services account ID.
DataSetId
[required] The ID of the dataset.
Value¶
A list with the following syntax:
list(
RefreshSchedules = list(
list(
ScheduleId = "string",
ScheduleFrequency = list(
Interval = "MINUTE15"|"MINUTE30"|"HOURLY"|"DAILY"|"WEEKLY"|"MONTHLY",
RefreshOnDay = list(
DayOfWeek = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY",
DayOfMonth = "string"
),
Timezone = "string",
TimeOfTheDay = "string"
),
StartAfterDateTime = as.POSIXct(
"2015-01-01"
),
RefreshType = "INCREMENTAL_REFRESH"|"FULL_REFRESH",
Arn = "string"
)
),
Status = 123,
RequestId = "string"
)