Skip to main content

topic_reviewed_answers

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

Overview

Nametopic_reviewed_answers
TypeResource
Idaws.quicksight.topic_reviewed_answers

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
answersarrayThe definition of all Answers in the topic.
request_idstringThe Amazon Web Services request ID for this operation.
statusintegerThe HTTP status of the request.
topic_arnstringThe Amazon Resource Name (ARN) of the topic.
topic_idstringThe 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:

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

NameDatatypeDescription
aws_account_idstringThe ID of the Amazon Web Services account that containd the reviewed answers that you want listed.
regionstringAWS region (default: us-east-1)
topic_idstringThe 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

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
;