Skip to content

Put Data Set Refresh Properties

quicksight_put_data_set_refresh_properties R Documentation

Creates or updates the dataset refresh properties for the dataset

Description

Creates or updates the dataset refresh properties for the dataset.

Usage

quicksight_put_data_set_refresh_properties(AwsAccountId, DataSetId,
  DataSetRefreshProperties)

Arguments

AwsAccountId

[required] The Amazon Web Services account ID.

DataSetId

[required] The ID of the dataset.

DataSetRefreshProperties

[required] The dataset refresh properties.

Value

A list with the following syntax:

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

Request syntax

svc$put_data_set_refresh_properties(
  AwsAccountId = "string",
  DataSetId = "string",
  DataSetRefreshProperties = list(
    RefreshConfiguration = list(
      IncrementalRefresh = list(
        LookbackWindow = list(
          ColumnName = "string",
          Size = 123,
          SizeUnit = "HOUR"|"DAY"|"WEEK"
        )
      )
    )
  )
)