topic_reviewed_answers
Creates, updates, deletes, gets or lists a topic_reviewed_answers resource.
Overview
| Name | topic_reviewed_answers |
| Type | Resource |
| Id | aws.quicksight.topic_reviewed_answers |
Fields
The following fields are returned by SELECT queries:
- list_topic_reviewed_answers
| Name | Datatype | Description |
|---|---|---|
answers | array | The definition of all Answers in the topic. |
request_id | string | The Amazon Web Services request ID for this operation. |
status | integer | The HTTP status of the request. |
topic_arn | string | The Amazon Resource Name (ARN) of the topic. |
topic_id | string | The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. (pattern: <code>^[A-Za-z0-9-_.\+]*$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_topic_reviewed_answers | select | aws_account_id, topic_id, region | Lists all reviewed answers for a Q Topic. |
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 containd the reviewed answers that you want listed. |
region | string | AWS region (default: us-east-1) |
topic_id | string | The ID for the topic that contains the reviewed answer that you want to list. This ID is unique per Amazon Web Services Region for each Amazon Web Services account. |
SELECT examples
- list_topic_reviewed_answers
Lists all reviewed answers for a Q Topic.
SELECT
answers,
request_id,
status,
topic_arn,
topic_id
FROM aws.quicksight.topic_reviewed_answers
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND topic_id = '{{ topic_id }}' -- required
AND region = '{{ region }}' -- required
;