Skip to main content

theme_aliases

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

Overview

Nametheme_aliases
TypeResource
Idaws.quicksight.theme_aliases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe token for the next set of results, or null if there are no more results.
request_idstringThe Amazon Web Services request ID for this operation.
statusintegerThe HTTP status of the request.
theme_alias_listarrayA structure containing the list of the theme's aliases.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_theme_aliasesselectaws_account_id, theme_id, regionnext-token, max-resultLists all the aliases of a theme.

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 theme aliases that you're listing.
regionstringAWS region (default: us-east-1)
theme_idstringThe ID for the theme.
max-resultintegerThe maximum number of results to be returned per request.
next-tokenstringThe token for the next set of results, or null if there are no more results.

SELECT examples

Lists all the aliases of a theme.

SELECT
next_token,
request_id,
status,
theme_alias_list
FROM aws.quicksight.theme_aliases
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND theme_id = '{{ theme_id }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-result` = '{{ max-result }}'
;