Skip to main content

users_index_capacities

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

Overview

Nameusers_index_capacities
TypeResource
Idaws.quicksight.users_index_capacities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe token for the next set of results, or null if there are no more results.
request_idstringThe Amazon Web Services request ID for this operation.
usersarrayThe list of users with their index capacity metrics.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_users_index_capacityselectaws_account_id, regionLists 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.

NameDatatypeDescription
aws_account_idstringThe ID of the Amazon Web Services account that contains the index capacity data.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;