CreateSnapshotOutput

A JSON object containing the following fields:

BackupFile StorageGatewayHybrid CloudStorage

Properties

Name Type Description
VolumeARN object
SnapshotId object
View JSON Schema on GitHub

JSON Schema

amazon-storage-gateway-create-snapshot-output-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-output-schema.json",
  "title": "CreateSnapshotOutput",
  "description": "A JSON object containing the following fields:",
  "type": "object",
  "properties": {
    "VolumeARN": {
      "allOf": [
        {
          "$ref": "#/components/schemas/VolumeARN"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the volume of which the snapshot was taken."
        }
      ]
    },
    "SnapshotId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SnapshotId"
        },
        {
          "description": "The snapshot ID that is used to refer to the snapshot in future operations such as describing snapshots (Amazon Elastic Compute Cloud API <code>DescribeSnapshots</code>) or creating a volume from a snapshot (<a>CreateStorediSCSIVolume</a>)."
        }
      ]
    }
  }
}