AWS CloudWatch · Schema

DashboardEntry

Represents a specific dashboard.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
DashboardName string The name of the dashboard.
DashboardArn string The Amazon Resource Name (ARN) of the dashboard.
LastModified string The time stamp of when the dashboard was last modified.
Size integer The size of the dashboard, in bytes.
View JSON Schema on GitHub

JSON Schema

cloudwatch-dashboard-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DashboardEntry",
  "type": "object",
  "description": "Represents a specific dashboard.",
  "properties": {
    "DashboardName": {
      "type": "string",
      "description": "The name of the dashboard."
    },
    "DashboardArn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the dashboard."
    },
    "LastModified": {
      "type": "string",
      "description": "The time stamp of when the dashboard was last modified."
    },
    "Size": {
      "type": "integer",
      "description": "The size of the dashboard, in bytes."
    }
  }
}