Search Topics
quicksight_search_topics | R Documentation |
Searches for any Q topic that exists in an Amazon QuickSight account¶
Description¶
Searches for any Q topic that exists in an Amazon QuickSight account.
Usage¶
Arguments¶
AwsAccountId
[required] The ID of the Amazon Web Services account that contains the topic that you want to find.
Filters
[required] The filters that you want to use to search for the topic.
NextToken
The token for the next set of results, or null if there are no more results.
MaxResults
The maximum number of results to be returned per request.
Value¶
A list with the following syntax:
list(
TopicSummaryList = list(
list(
Arn = "string",
TopicId = "string",
Name = "string",
UserExperienceVersion = "LEGACY"|"NEW_READER_EXPERIENCE"
)
),
NextToken = "string",
Status = 123,
RequestId = "string"
)
Request syntax¶
svc$search_topics(
AwsAccountId = "string",
Filters = list(
list(
Operator = "StringEquals"|"StringLike",
Name = "QUICKSIGHT_USER"|"QUICKSIGHT_VIEWER_OR_OWNER"|"DIRECT_QUICKSIGHT_VIEWER_OR_OWNER"|"QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_OWNER"|"DIRECT_QUICKSIGHT_SOLE_OWNER"|"TOPIC_NAME",
Value = "string"
)
),
NextToken = "string",
MaxResults = 123
)