folder_members
Creates, updates, deletes, gets or lists a folder_members resource.
Overview
| Name | folder_members |
| Type | Resource |
| Id | aws.quicksight.folder_members |
Fields
The following fields are returned by SELECT queries:
- list_folder_members
| Name | Datatype | Description |
|---|---|---|
member_arn | string | The Amazon Resource Name (ARN) of the member. |
member_id | string | The ID of the member. (pattern: <code>[\w-]+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_folder_members | select | aws_account_id, folder_id, region | next-token, max-results | List 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.
| Name | Datatype | Description |
|---|---|---|
aws_account_id | string | The ID for the Amazon Web Services account that contains the folder. |
folder_id | string | The ID of the folder. |
region | string | AWS region (default: us-east-1) |
max-results | integer | The maximum number of results to be returned per request. |
next-token | string | The token for the next set of results, or null if there are no more results. |
SELECT examples
- list_folder_members
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 }}'
;