Create Rule

Specifies when and how to create snapshots.

BackupEBS SnapshotsLifecycle ManagementStorageAutomationCompliance

Properties

Name Type Description
Interval integer The interval between snapshots
IntervalUnit string
Times array
CronExpression string
View JSON Schema on GitHub

JSON Schema

create-rule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/amazon-data-lifecycle-manager/json-schema/create-rule-schema.json",
  "title": "Create Rule",
  "description": "Specifies when and how to create snapshots.",
  "type": "object",
  "properties": {
    "Interval": {
      "type": "integer",
      "description": "The interval between snapshots"
    },
    "IntervalUnit": {
      "type": "string",
      "enum": [
        "HOURS"
      ]
    },
    "Times": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "CronExpression": {
      "type": "string"
    }
  }
}