Skip to content

Create Refresh Schedule

quicksight_create_refresh_schedule R Documentation

Creates a refresh schedule for a dataset

Description

Creates a refresh schedule for a dataset. You can create up to 5 different schedules for a single dataset.

Usage

quicksight_create_refresh_schedule(DataSetId, AwsAccountId, Schedule)

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:

list(
  Status = 123,
  RequestId = "string",
  ScheduleId = "string",
  Arn = "string"
)

Request syntax

svc$create_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"
  )
)