Skip to main content

self_upgrade_configurations

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

Overview

Nameself_upgrade_configurations
TypeResource
Idaws.quicksight.self_upgrade_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
request_idstringThe Amazon Web Services request ID for this operation.
self_upgrade_configurationobjectThe self-upgrade configuration for the Quick account.
statusintegerThe HTTP status of the request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_self_upgrade_configurationselectaws_account_id, namespace, regionDescribes the self-upgrade configuration for a Quick account.
update_self_upgrade_configurationupdateaws_account_id, namespace, region, SelfUpgradeStatusUpdates the self-upgrade configuration for a Quick 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 of the Amazon Web Services account that contains the Quick self-upgrade configuration that you want to update.
namespacestringThe Quick namespace that you want to update the Quick self-upgrade configuration for.
regionstringAWS region (default: us-east-1)

SELECT examples

Describes the self-upgrade configuration for a Quick account.

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

UPDATE examples

Updates the self-upgrade configuration for a Quick account.

UPDATE aws.quicksight.self_upgrade_configurations
SET
SelfUpgradeStatus = '{{ SelfUpgradeStatus }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND namespace = '{{ namespace }}' --required
AND region = '{{ region }}' --required
AND SelfUpgradeStatus = '{{ SelfUpgradeStatus }}' --required
RETURNING
request_id,
status;