Skip to main content

account_settings

Creates, updates, deletes, gets or lists an account_settings resource.

Overview

Nameaccount_settings
TypeResource
Idaws.quicksight.account_settings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
account_settingsobjectThe Amazon Quick Sight settings for this Amazon Web Services account. This information includes the edition of Amazon Quick Sight that you subscribed to (Standard or Enterprise) and the notification email for the Amazon Quick Sight subscription. In the Quick Sight console, the Amazon Quick Sight subscription is sometimes referred to as a Quick Sight "account" even though it's technically not an account by itself. Instead, it's a subscription to the Amazon Quick Sight service for your Amazon Web Services account. The edition that you subscribe to applies to Quick in every Amazon Web Services Region where you use it.
request_idstringThe Amazon Web Services request ID for this operation.
statusintegerThe HTTP status of the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_account_settingsselectaws_account_id, regionDescribes the settings that were used when your Quick Sight subscription was first created in this Amazon Web Services account.
update_account_settingsupdateaws_account_id, region, DefaultNamespaceUpdates the Amazon Quick Sight settings in your Amazon Web Services account.

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 for the Amazon Web Services account that contains the Quick Sight settings that you want to list.
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the settings that were used when your Quick Sight subscription was first created in this Amazon Web Services account.

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

UPDATE examples

Updates the Amazon Quick Sight settings in your Amazon Web Services account.

UPDATE aws.quicksight.account_settings
SET
DefaultNamespace = '{{ DefaultNamespace }}',
NotificationEmail = '{{ NotificationEmail }}',
TerminationProtectionEnabled = {{ TerminationProtectionEnabled }}
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND region = '{{ region }}' --required
AND DefaultNamespace = '{{ DefaultNamespace }}' --required
RETURNING
request_id,
status;