Amazon Neptune · Schema

GraphSnapshotOutput

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
id string
name string
arn string
sourceGraphId string
snapshotCreateTime string
status string
kmsKeyIdentifier string
View JSON Schema on GitHub

JSON Schema

amazon-neptune-graphsnapshotoutput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GraphSnapshotOutput",
  "title": "GraphSnapshotOutput",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "arn": {
      "type": "string"
    },
    "sourceGraphId": {
      "type": "string"
    },
    "snapshotCreateTime": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string",
      "enum": [
        "CREATING",
        "AVAILABLE",
        "DELETING",
        "FAILED"
      ]
    },
    "kmsKeyIdentifier": {
      "type": "string"
    }
  }
}