Skip to main content

analyses

Creates, updates, deletes, gets or lists an analyses resource.

Overview

Nameanalyses
TypeResource
Idaws.quicksight.analyses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
analysis_idstringThe ID of the analysis. This ID displays in the URL. (pattern: <code>[\w-]+</code>)
arnstringThe Amazon Resource Name (ARN) for the analysis.
created_timestring (date-time)The time that the analysis was created.
last_updated_timestring (date-time)The time that the analysis was last updated.
namestringThe name of the analysis. This name is displayed in the Quick Sight console.
statusstringThe last known status for the analysis. (CREATION_IN_PROGRESS, CREATION_SUCCESSFUL, CREATION_FAILED, UPDATE_IN_PROGRESS, UPDATE_SUCCESSFUL, UPDATE_FAILED, DELETED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_analysesselectaws_account_id, regionSearches for analyses that belong to the user specified in the filter. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.
list_analysesselectaws_account_id, regionnext-token, max-resultsLists Amazon Quick Sight analyses that exist in the specified Amazon Web Services account.

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 ID of the Amazon Web Services account that contains the analyses.
regionstringAWS region (default: us-east-1)
max-resultsintegerThe maximum number of results to return.
next-tokenstringA pagination token that can be used in a subsequent request.

SELECT examples

Searches for analyses that belong to the user specified in the filter. This operation is eventually consistent. The results are best effort and may not reflect very recent updates and changes.

SELECT
analysis_id,
arn,
created_time,
last_updated_time,
name,
status
FROM aws.quicksight.analyses
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND region = '{{ region }}' -- required
;