Describe Data Set Refresh Properties
quicksight_describe_data_set_refresh_properties | R Documentation |
Describes the refresh properties of a dataset¶
Description¶
Describes the refresh properties of a dataset.
Usage¶
quicksight_describe_data_set_refresh_properties(AwsAccountId, DataSetId)
Arguments¶
AwsAccountId |
[required] The Amazon Web Services account ID. |
DataSetId |
[required] The ID of the dataset. |
Value¶
A list with the following syntax:
list(
RequestId = "string",
Status = 123,
DataSetRefreshProperties = list(
RefreshConfiguration = list(
IncrementalRefresh = list(
LookbackWindow = list(
ColumnName = "string",
Size = 123,
SizeUnit = "HOUR"|"DAY"|"WEEK"
)
)
)
)
)
Request syntax¶
svc$describe_data_set_refresh_properties(
AwsAccountId = "string",
DataSetId = "string"
)