Skip to main content

folder_members

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

Overview

Namefolder_members
TypeResource
Idaws.quicksight.folder_members

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
member_arnstringThe Amazon Resource Name (ARN) of the member.
member_idstringThe ID of the member. (pattern: <code>[\w-]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_folder_membersselectaws_account_id, folder_id, regionnext-token, max-resultsList all assets (DASHBOARD, ANALYSIS, and DATASET) in a folder.

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 for the Amazon Web Services account that contains the folder.
folder_idstringThe ID of the folder.
regionstringAWS region (default: us-east-1)
max-resultsintegerThe maximum number of results to be returned per request.
next-tokenstringThe token for the next set of results, or null if there are no more results.

SELECT examples

List all assets (DASHBOARD, ANALYSIS, and DATASET) in a folder.

SELECT
member_arn,
member_id
FROM aws.quicksight.folder_members
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND folder_id = '{{ folder_id }}' -- required
AND region = '{{ region }}' -- required
AND `next-token` = '{{ next-token }}'
AND `max-results` = '{{ max-results }}'
;