Amazon Neptune · JSON Structure

Management Restore Db Cluster From Snapshot Request Structure

RestoreDBClusterFromSnapshotRequest schema from Neptune

Type: object Properties: 9 Required: 3
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

RestoreDBClusterFromSnapshotRequest is a JSON Structure definition published by Amazon Neptune, describing 9 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DBClusterIdentifier SnapshotIdentifier Engine EngineVersion Port DBSubnetGroupName VpcSecurityGroupIds DeletionProtection IAMDatabaseAuthenticationEnabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-structure/management-restore-db-cluster-from-snapshot-request-structure.json",
  "name": "RestoreDBClusterFromSnapshotRequest",
  "description": "RestoreDBClusterFromSnapshotRequest schema from Neptune",
  "type": "object",
  "properties": {
    "DBClusterIdentifier": {
      "type": "string",
      "description": "The name of the new DB cluster."
    },
    "SnapshotIdentifier": {
      "type": "string",
      "description": "The identifier of the snapshot to restore from."
    },
    "Engine": {
      "type": "string",
      "description": "The database engine to use.",
      "default": "neptune"
    },
    "EngineVersion": {
      "type": "string"
    },
    "Port": {
      "type": "int32"
    },
    "DBSubnetGroupName": {
      "type": "string"
    },
    "VpcSecurityGroupIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "DeletionProtection": {
      "type": "boolean"
    },
    "IAMDatabaseAuthenticationEnabled": {
      "type": "boolean"
    }
  },
  "required": [
    "DBClusterIdentifier",
    "SnapshotIdentifier",
    "Engine"
  ]
}