AWS CloudWatch · Schema

Range

Specifies one range of days or times to exclude from use for training an anomaly detection model.

AlarmsAwsDashboardsLogsMetricsMonitoringObservability

Properties

Name Type Description
StartTime string The start time of the range to exclude.
EndTime string The end time of the range to exclude.
View JSON Schema on GitHub

JSON Schema

cloudwatch-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Range",
  "type": "object",
  "description": "Specifies one range of days or times to exclude from use for training an anomaly detection model.",
  "properties": {
    "StartTime": {
      "type": "string",
      "description": "The start time of the range to exclude."
    },
    "EndTime": {
      "type": "string",
      "description": "The end time of the range to exclude."
    }
  }
}