Amazon Neptune · Schema

CreateGraphSnapshotInput

CreateGraphSnapshotInput schema from Neptune

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
graphIdentifier string The identifier of the graph to snapshot.
snapshotName string The name of the snapshot.
tags object
View JSON Schema on GitHub

JSON Schema

analytics-create-graph-snapshot-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/analytics-create-graph-snapshot-input-schema.json",
  "title": "CreateGraphSnapshotInput",
  "description": "CreateGraphSnapshotInput schema from Neptune",
  "type": "object",
  "properties": {
    "graphIdentifier": {
      "type": "string",
      "description": "The identifier of the graph to snapshot."
    },
    "snapshotName": {
      "type": "string",
      "description": "The name of the snapshot."
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "graphIdentifier",
    "snapshotName"
  ]
}