Skip to main content

data_set_refresh_properties

Creates, updates, deletes, gets or lists a data_set_refresh_properties resource.

Overview

Namedata_set_refresh_properties
TypeResource
Idaws.quicksight.data_set_refresh_properties

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
data_set_refresh_propertiesobjectThe dataset refresh properties.
request_idstringThe Amazon Web Services request ID for this operation.
statusintegerThe HTTP status of the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_data_set_refresh_propertiesselectaws_account_id, data_set_id, regionDescribes the refresh properties of a dataset.
put_data_set_refresh_propertiesreplaceaws_account_id, data_set_id, region, DataSetRefreshPropertiesCreates or updates the dataset refresh properties for the dataset.
delete_data_set_refresh_propertiesdeleteaws_account_id, data_set_id, regionDeletes the dataset refresh properties of the dataset.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
aws_account_idstringThe Amazon Web Services account ID.
data_set_idstringThe ID of the dataset.
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the refresh properties of a dataset.

SELECT
data_set_refresh_properties,
request_id,
status
FROM aws.quicksight.data_set_refresh_properties
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND data_set_id = '{{ data_set_id }}' -- required
AND region = '{{ region }}' -- required
;

REPLACE examples

Creates or updates the dataset refresh properties for the dataset.

REPLACE aws.quicksight.data_set_refresh_properties
SET
DataSetRefreshProperties = '{{ DataSetRefreshProperties }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND data_set_id = '{{ data_set_id }}' --required
AND region = '{{ region }}' --required
AND DataSetRefreshProperties = '{{ DataSetRefreshProperties }}' --required
RETURNING
request_id,
status;

DELETE examples

Deletes the dataset refresh properties of the dataset.

DELETE FROM aws.quicksight.data_set_refresh_properties
WHERE aws_account_id = '{{ aws_account_id }}' --required
AND data_set_id = '{{ data_set_id }}' --required
AND region = '{{ region }}' --required
;