dashboard_versions
Creates, updates, deletes, gets or lists a dashboard_versions resource.
Overview
| Name | dashboard_versions |
| Type | Resource |
| Id | aws.quicksight.dashboard_versions |
Fields
The following fields are returned by SELECT queries:
- list_dashboard_versions
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (ARN) of the resource. |
created_time | string (date-time) | The time that this dashboard version was created. |
description | string | Description. |
source_entity_arn | string | Source entity ARN. |
status | string | The HTTP status of the request. (CREATION_IN_PROGRESS, CREATION_SUCCESSFUL, CREATION_FAILED, UPDATE_IN_PROGRESS, UPDATE_SUCCESSFUL, UPDATE_FAILED, DELETED) |
version_number | integer (int64) | Version number. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_dashboard_versions | select | aws_account_id, dashboard_id, region | next-token, max-results | Lists all the versions of the dashboards in the Amazon Quick Sight subscription. |
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.
| Name | Datatype | Description |
|---|---|---|
aws_account_id | string | The ID of the Amazon Web Services account that contains the dashboard that you're listing versions for. |
dashboard_id | string | The ID for the dashboard. |
region | string | AWS region (default: us-east-1) |
max-results | integer | The maximum number of results to be returned per request. |
next-token | string | The token for the next set of results, or null if there are no more results. |
SELECT examples
- list_dashboard_versions
Lists all the versions of the dashboards in the Amazon Quick Sight subscription.
SELECT
arn,
created_time,
description,
source_entity_arn,
status,
version_number
FROM aws.quicksight.dashboard_versions
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND dashboard_id = '{{ dashboard_id }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;