List Dashboards
quicksight_list_dashboards | R Documentation |
Lists dashboards in an Amazon Web Services account¶
Description¶
Lists dashboards in an Amazon Web Services account.
Usage¶
quicksight_list_dashboards(AwsAccountId, NextToken, MaxResults)
Arguments¶
AwsAccountId |
[required] The ID of the Amazon Web Services account that contains the dashboards 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. |
Value¶
A list with the following syntax:
list(
DashboardSummaryList = list(
list(
Arn = "string",
DashboardId = "string",
Name = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
LastUpdatedTime = as.POSIXct(
"2015-01-01"
),
PublishedVersionNumber = 123,
LastPublishedTime = as.POSIXct(
"2015-01-01"
)
)
),
NextToken = "string",
Status = 123,
RequestId = "string"
)
Request syntax¶
svc$list_dashboards(
AwsAccountId = "string",
NextToken = "string",
MaxResults = 123
)