List Theme Versions
quicksight_list_theme_versions | R Documentation |
Lists all the versions of the themes in the current Amazon Web Services account¶
Description¶
Lists all the versions of the themes in the current Amazon Web Services account.
Usage¶
quicksight_list_theme_versions(AwsAccountId, ThemeId, NextToken,
MaxResults)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the themes that you're listing. |
ThemeId |
[required] The ID for the theme. |
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(
ThemeVersionSummaryList = list(
list(
VersionNumber = 123,
Arn = "string",
Description = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
Status = "CREATION_IN_PROGRESS"|"CREATION_SUCCESSFUL"|"CREATION_FAILED"|"UPDATE_IN_PROGRESS"|"UPDATE_SUCCESSFUL"|"UPDATE_FAILED"|"DELETED"
)
),
NextToken = "string",
Status = 123,
RequestId = "string"
)
Request syntax¶
svc$list_theme_versions(
AwsAccountId = "string",
ThemeId = "string",
NextToken = "string",
MaxResults = 123
)