{
"$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 DescribeSnapshots) or creating a volume from a snapshot (CreateStorediSCSIVolume)."
}
]
}
}
}