AWS CloudWatch · Schema

StatisticSet

Represents a set of statistics that describes a specific metric.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
SampleCount number The number of samples used for the statistic set.
Sum number The sum of values for the sample set.
Minimum number The minimum value of the sample set.
Maximum number The maximum value of the sample set.
View JSON Schema on GitHub

JSON Schema

cloudwatch-statisticset-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatisticSet",
  "title": "StatisticSet",
  "type": "object",
  "description": "Represents a set of statistics that describes a specific metric.",
  "required": [
    "SampleCount",
    "Sum",
    "Minimum",
    "Maximum"
  ],
  "properties": {
    "SampleCount": {
      "type": "number",
      "format": "double",
      "description": "The number of samples used for the statistic set.",
      "example": 42.5
    },
    "Sum": {
      "type": "number",
      "format": "double",
      "description": "The sum of values for the sample set.",
      "example": 42.5
    },
    "Minimum": {
      "type": "number",
      "format": "double",
      "description": "The minimum value of the sample set.",
      "example": 42.5
    },
    "Maximum": {
      "type": "number",
      "format": "double",
      "description": "The maximum value of the sample set.",
      "example": 42.5
    }
  }
}