Skip to content

Get Dashboard

cloudwatch_get_dashboard R Documentation

Displays the details of the dashboard that you specify

Description

Displays the details of the dashboard that you specify.

To copy an existing dashboard, use get_dashboard, and then use the data returned within DashboardBody as the template for the new dashboard when you call put_dashboard to create the copy.

Usage

cloudwatch_get_dashboard(DashboardName)

Arguments

DashboardName

[required] The name of the dashboard to be described.

Value

A list with the following syntax:

list(
  DashboardArn = "string",
  DashboardBody = "string",
  DashboardName = "string"
)

Request syntax

svc$get_dashboard(
  DashboardName = "string"
)