theme_aliases
Creates, updates, deletes, gets or lists a theme_aliases resource.
Overview
| Name | theme_aliases |
| Type | Resource |
| Id | aws.quicksight.theme_aliases |
Fields
The following fields are returned by SELECT queries:
- list_theme_aliases
| Name | Datatype | Description |
|---|---|---|
next_token | string | The token for the next set of results, or null if there are no more results. |
request_id | string | The Amazon Web Services request ID for this operation. |
status | integer | The HTTP status of the request. |
theme_alias_list | array | A structure containing the list of the theme's aliases. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_theme_aliases | select | aws_account_id, theme_id, region | next-token, max-result | Lists 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.
| Name | Datatype | Description |
|---|---|---|
aws_account_id | string | The ID of the Amazon Web Services account that contains the theme aliases that you're listing. |
region | string | AWS region (default: us-east-1) |
theme_id | string | The ID for the theme. |
max-result | 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_theme_aliases
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 }}'
;