self_upgrade_configurations
Creates, updates, deletes, gets or lists a self_upgrade_configurations resource.
Overview
| Name | self_upgrade_configurations |
| Type | Resource |
| Id | aws.quicksight.self_upgrade_configurations |
Fields
The following fields are returned by SELECT queries:
- describe_self_upgrade_configuration
| Name | Datatype | Description |
|---|---|---|
request_id | string | The Amazon Web Services request ID for this operation. |
self_upgrade_configuration | object | The self-upgrade configuration for the Quick account. |
status | integer | The HTTP status of the request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_self_upgrade_configuration | select | aws_account_id, namespace, region | Describes the self-upgrade configuration for a Quick account. | |
update_self_upgrade_configuration | update | aws_account_id, namespace, region, SelfUpgradeStatus | Updates 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.
| Name | Datatype | Description |
|---|---|---|
aws_account_id | string | The ID of the Amazon Web Services account that contains the Quick self-upgrade configuration that you want to update. |
namespace | string | The Quick namespace that you want to update the Quick self-upgrade configuration for. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_self_upgrade_configuration
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
- update_self_upgrade_configuration
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;