spice_capacity_configurations
Creates, updates, deletes, gets or lists a spice_capacity_configurations resource.
Overview
| Name | spice_capacity_configurations |
| Type | Resource |
| Id | aws.quicksight.spice_capacity_configurations |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
update_spice_capacity_configuration | update | aws_account_id, region, PurchaseMode | Updates the SPICE capacity configuration for a Quick Sight 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 SPICE configuration that you want to update. |
region | string | AWS region (default: us-east-1) |
UPDATE examples
- update_spice_capacity_configuration
Updates the SPICE capacity configuration for a Quick Sight account.
UPDATE aws.quicksight.spice_capacity_configurations
SET
PurchaseMode = '{{ PurchaseMode }}'
WHERE
aws_account_id = '{{ aws_account_id }}' --required
AND region = '{{ region }}' --required
AND PurchaseMode = '{{ PurchaseMode }}' --required
RETURNING
request_id,
status;