CreateSnapshotFromVolumeRecoveryPointInput

CreateSnapshotFromVolumeRecoveryPointInput schema from Amazon Storage Gateway API

BackupFile StorageGatewayHybrid CloudStorage

Properties

Name Type Description
VolumeARN object
SnapshotDescription object
Tags object
View JSON Schema on GitHub

JSON Schema

amazon-storage-gateway-create-snapshot-from-volume-recovery-point-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-storage-gateway/refs/heads/main/json-schema/amazon-storage-gateway-create-snapshot-from-volume-recovery-point-input-schema.json",
  "title": "CreateSnapshotFromVolumeRecoveryPointInput",
  "description": "CreateSnapshotFromVolumeRecoveryPointInput schema from Amazon Storage Gateway API",
  "type": "object",
  "properties": {
    "VolumeARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VolumeARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the iSCSI volume target. Use the <a>DescribeStorediSCSIVolumes</a> operation to return to retrieve the TargetARN for specified VolumeARN."
        }
      ]
    },
    "SnapshotDescription": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SnapshotDescription"
        },
        {
          "description": "Textual description of the snapshot that appears in the Amazon EC2 console, Elastic Block Store snapshots panel in the <b>Description</b> field, and in the Storage Gateway snapshot <b>Details</b> pane, <b>Description</b> field."
        }
      ]
    },
    "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",
    "SnapshotDescription"
  ]
}