List Topics
quicksight_list_topics | R Documentation |
Lists all of the topics within an account¶
Description¶
Lists all of the topics within an account.
Usage¶
quicksight_list_topics(AwsAccountId, NextToken, MaxResults)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the topics that you want to list. |
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(
TopicsSummaries = list(
list(
Arn = "string",
TopicId = "string",
Name = "string",
UserExperienceVersion = "LEGACY"|"NEW_READER_EXPERIENCE"
)
),
NextToken = "string",
RequestId = "string",
Status = 123
)
Request syntax¶
svc$list_topics(
AwsAccountId = "string",
NextToken = "string",
MaxResults = 123
)