Skip to main content

topics_v2s

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

Overview

Nametopics_v2s
TypeResource
Idaws.quicksight.topics_v2s

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the topic.
namestringThe name of the topic.
topic_idstringThe ID of the topic. 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
search_topics_v2selectaws_account_id, regionSearches for any Q topic that exists in an Amazon Web Services account.
list_topics_v2selectaws_account_id, regionnext-token, max-resultsLists all of the Q topics in the specified Amazon Web Services account in an Amazon Web Services Region.

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 topics that you want to list.
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

Searches for any Q topic that exists in an Amazon Web Services account.

SELECT
arn,
name,
topic_id
FROM aws.quicksight.topics_v2s
WHERE aws_account_id = '{{ aws_account_id }}' -- required
AND region = '{{ region }}' -- required
;