Skip to main content

brand_assignments

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

Overview

Namebrand_assignments
TypeResource
Idaws.quicksight.brand_assignments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
brand_arnstringThe Amazon Resource Name (ARN) 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_assignmentselectaws_account_id, regionDescribes a brand assignment.
update_brand_assignmentupdateaws_account_id, region, BrandArnUpdates a brand assignment.
delete_brand_assignmentdeleteaws_account_id, regionDeletes a brand assignment.

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 assignment.
regionstringAWS region (default: us-east-1)

SELECT examples

Describes a brand assignment.

SELECT
brand_arn,
request_id
FROM aws.quicksight.brand_assignments
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND region = '{{ region }}' -- required
;

UPDATE examples

Updates a brand assignment.

UPDATE aws.quicksight.brand_assignments
SET
BrandArn = '{{ BrandArn }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND region = '{{ region }}' --required
AND BrandArn = '{{ BrandArn }}' --required
RETURNING
brand_arn,
request_id;

DELETE examples

Deletes a brand assignment.

DELETE FROM aws.quicksight.brand_assignments
WHERE aws_account_id = '{{ aws_account_id }}' --required
AND region = '{{ region }}' --required
;