List Dashboards
cloudtrail_list_dashboards | R Documentation |
Returns information about all dashboards in the account, in the current Region¶
Description¶
Returns information about all dashboards in the account, in the current Region.
Usage¶
cloudtrail_list_dashboards(NamePrefix, Type, NextToken, MaxResults)
Arguments¶
NamePrefix |
Specify a name prefix to filter on. |
Type |
Specify a dashboard type to filter on: |
NextToken |
A token you can use to get the next page of dashboard results. |
MaxResults |
The maximum number of dashboards to display on a single page. |
Value¶
A list with the following syntax:
list(
Dashboards = list(
list(
DashboardArn = "string",
Type = "MANAGED"|"CUSTOM"
)
),
NextToken = "string"
)
Request syntax¶
svc$list_dashboards(
NamePrefix = "string",
Type = "MANAGED"|"CUSTOM",
NextToken = "string",
MaxResults = 123
)