Update Refresh Schedule
quicksight_update_refresh_schedule | R Documentation |
Updates a refresh schedule for a dataset¶
Description¶
Updates a refresh schedule for a dataset.
Usage¶
Arguments¶
DataSetId
[required] The ID of the dataset.
AwsAccountId
[required] The Amazon Web Services account ID.
Schedule
[required] The refresh schedule.
Value¶
A list with the following syntax:
Request syntax¶
svc$update_refresh_schedule(
DataSetId = "string",
AwsAccountId = "string",
Schedule = 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"
)
)