Amazon Neptune · Schema

RestoreGraphFromSnapshotInput

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
graphName string The name of the restored graph.
provisionedMemory integer
deletionProtection boolean
tags object
replicaCount integer
publicConnectivity boolean
View JSON Schema on GitHub

JSON Schema

amazon-neptune-restoregraphfromsnapshotinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RestoreGraphFromSnapshotInput",
  "title": "RestoreGraphFromSnapshotInput",
  "type": "object",
  "required": [
    "graphName"
  ],
  "properties": {
    "graphName": {
      "type": "string",
      "description": "The name of the restored graph."
    },
    "provisionedMemory": {
      "type": "integer"
    },
    "deletionProtection": {
      "type": "boolean"
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "replicaCount": {
      "type": "integer"
    },
    "publicConnectivity": {
      "type": "boolean"
    }
  }
}