Skip to main content

brand_published_versions

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

Overview

Namebrand_published_versions
TypeResource
Idaws.quicksight.brand_published_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
brand_definitionobjectThe definition of the brand.
brand_detailobjectThe details of the brand.
request_idstringThe Amazon Web Services request ID for this operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_brand_published_versionselectaws_account_id, brand_id, regionDescribes the published version of the brand.
update_brand_published_versionupdateaws_account_id, brand_id, region, VersionIdUpdates 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.

NameDatatypeDescription
aws_account_idstringThe ID of the Amazon Web Services account that owns the brand.
brand_idstringThe ID of the Quick brand.
regionstringAWS region (default: us-east-1)

SELECT examples

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

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;