Amazon Neptune · Schema

CreateGraphSnapshotInput

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

amazon-neptune-creategraphsnapshotinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateGraphSnapshotInput",
  "title": "CreateGraphSnapshotInput",
  "type": "object",
  "required": [
    "graphIdentifier",
    "snapshotName"
  ],
  "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"
      }
    }
  }
}