List Themes
quicksight_list_themes | R Documentation |
Lists all the themes in the current Amazon Web Services account¶
Description¶
Lists all the themes in the current Amazon Web Services account.
Usage¶
quicksight_list_themes(AwsAccountId, NextToken, MaxResults, Type)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the themes that you're listing. |
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. |
Type |
The type of themes that you want to list. Valid options include the following:
|
Value¶
A list with the following syntax:
list(
ThemeSummaryList = list(
list(
Arn = "string",
Name = "string",
ThemeId = "string",
LatestVersionNumber = 123,
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string",
Status = 123,
RequestId = "string"
)
Request syntax¶
svc$list_themes(
AwsAccountId = "string",
NextToken = "string",
MaxResults = 123,
Type = "QUICKSIGHT"|"CUSTOM"|"ALL"
)