Amazon Storage Gateway · JSON Structure

Amazon Storage Gateway Update Snapshot Schedule Input Structure

A JSON object containing one or more of the following fields:

Type: object Properties: 5 Required: 3
BackupFile StorageGatewayHybrid CloudStorage

UpdateSnapshotScheduleInput is a JSON Structure definition published by Amazon Storage Gateway, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

VolumeARN StartAt RecurrenceInHours Description Tags

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-structure/amazon-storage-gateway-update-snapshot-schedule-input-structure.json",
  "name": "UpdateSnapshotScheduleInput",
  "description": "<p>A JSON object containing one or more of the following fields:</p> <ul> <li> <p> <a>UpdateSnapshotScheduleInput$Description</a> </p> </li> <li> <p> <a>UpdateSnapshotScheduleInput$RecurrenceInHours</a> </p> </li> <li> <p> <a>UpdateSnapshotScheduleInput$StartAt</a> </p> </li> <li> <p> <a>UpdateSnapshotScheduleInput$VolumeARN</a> </p> </li> </ul>",
  "properties": {
    "VolumeARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VolumeARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the volume. Use the <a>ListVolumes</a> operation to return a list of gateway volumes."
        }
      ]
    },
    "StartAt": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HourOfDay"
        },
        {
          "description": "The hour of the day at which the snapshot schedule begins represented as <i>hh</i>, where <i>hh</i> is the hour (0 to 23). The hour of the day is in the time zone of the gateway."
        }
      ]
    },
    "RecurrenceInHours": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RecurrenceInHours"
        },
        {
          "description": "Frequency of snapshots. Specify the number of hours between snapshots."
        }
      ]
    },
    "Description": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Description"
        },
        {
          "description": "Optional description of the snapshot that overwrites the existing description."
        }
      ]
    },
    "Tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Tags"
        },
        {
          "description": "<p>A list of up to 50 tags that can be assigned to a snapshot. Each tag is a key-value pair.</p> <note> <p>Valid characters for key and value are letters, spaces, and numbers representable in UTF-8 format, and the following special characters: + - = . _ : / @. The maximum length of a tag's key is 128 characters, and the maximum length for a tag's value is 256.</p> </note>"
        }
      ]
    }
  },
  "required": [
    "VolumeARN",
    "StartAt",
    "RecurrenceInHours"
  ]
}