users_index_capacities
Creates, updates, deletes, gets or lists a users_index_capacities resource.
Overview
| Name | users_index_capacities |
| Type | Resource |
| Id | aws.quicksight.users_index_capacities |
Fields
The following fields are returned by SELECT queries:
- list_users_index_capacity
| Name | Datatype | Description |
|---|---|---|
next_token | string | The token for the next set of results, or null if there are no more results. |
request_id | string | The Amazon Web Services request ID for this operation. |
users | array | The list of users with their index capacity metrics. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_users_index_capacity | select | aws_account_id, region | Lists per-user index capacity consumption for an 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 index capacity data. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_users_index_capacity
Lists per-user index capacity consumption for an account.
SELECT
next_token,
request_id,
users
FROM aws.quicksight.users_index_capacities
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND region = '{{ region }}' -- required
;