AWS CloudWatch · JSON Structure

Cloudwatch Datapoint Structure

Type: object Properties: 7
AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Datapoint is a JSON Structure definition published by AWS CloudWatch, describing 7 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

Timestamp SampleCount Average Sum Minimum Maximum ExtendedStatistics

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Datapoint",
  "type": "object",
  "properties": {
    "Timestamp": {
      "type": "string"
    },
    "SampleCount": {
      "type": "number"
    },
    "Average": {
      "type": "number"
    },
    "Sum": {
      "type": "number"
    },
    "Minimum": {
      "type": "number"
    },
    "Maximum": {
      "type": "number"
    },
    "ExtendedStatistics": {
      "type": "object"
    }
  }
}