Skip to main content

spice_capacity_configurations

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

Overview

Namespice_capacity_configurations
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
update_spice_capacity_configurationupdateaws_account_id, region, PurchaseModeUpdates 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.

NameDatatypeDescription
aws_account_idstringThe ID of the Amazon Web Services account that contains the SPICE configuration that you want to update.
regionstringAWS region (default: us-east-1)

UPDATE examples

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;