List Dashboard Versions
| quicksight_list_dashboard_versions | R Documentation |
Lists all the versions of the dashboards in the Amazon QuickSight subscription¶
Description¶
Lists all the versions of the dashboards in the Amazon QuickSight subscription.
Usage¶
Arguments¶
AwsAccountId[required] The ID of the Amazon Web Services account that contains the dashboard that you're listing versions for.
DashboardId[required] The ID for the dashboard.
NextTokenThe token for the next set of results, or null if there are no more results.
MaxResultsThe maximum number of results to be returned per request.
Value¶
A list with the following syntax:
list(
DashboardVersionSummaryList = list(
list(
Arn = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
VersionNumber = 123,
Status = "CREATION_IN_PROGRESS"|"CREATION_SUCCESSFUL"|"CREATION_FAILED"|"UPDATE_IN_PROGRESS"|"UPDATE_SUCCESSFUL"|"UPDATE_FAILED"|"DELETED",
SourceEntityArn = "string",
Description = "string"
)
),
NextToken = "string",
Status = 123,
RequestId = "string"
)