brand_published_versions
Creates, updates, deletes, gets or lists a brand_published_versions resource.
Overview
| Name | brand_published_versions |
| Type | Resource |
| Id | aws.quicksight.brand_published_versions |
Fields
The following fields are returned by SELECT queries:
- describe_brand_published_version
| Name | Datatype | Description |
|---|---|---|
brand_definition | object | The definition of the brand. |
brand_detail | object | The details of the brand. |
request_id | string | The Amazon Web Services request ID for this operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_brand_published_version | select | aws_account_id, brand_id, region | Describes the published version of the brand. | |
update_brand_published_version | update | aws_account_id, brand_id, region, VersionId | Updates the published version of a brand. |
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 owns the brand. |
brand_id | string | The ID of the Quick brand. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_brand_published_version
Describes the published version of the brand.
SELECT
brand_definition,
brand_detail,
request_id
FROM aws.quicksight.brand_published_versions
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND brand_id = '{{ brand_id }}' -- required
AND region = '{{ region }}' -- required
;
UPDATE examples
- update_brand_published_version
Updates the published version of a brand.
UPDATE aws.quicksight.brand_published_versions
SET
VersionId = '{{ VersionId }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND brand_id = '{{ brand_id }}' --required
AND region = '{{ region }}' --required
AND VersionId = '{{ VersionId }}' --required
RETURNING
request_id,
version_id;