Amazon Neptune · Schema

RestoreDBClusterFromSnapshotRequest

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
DBClusterIdentifier string The name of the new DB cluster.
SnapshotIdentifier string The identifier of the snapshot to restore from.
Engine string The database engine to use.
EngineVersion string
Port integer
DBSubnetGroupName string
VpcSecurityGroupIds array
DeletionProtection boolean
IAMDatabaseAuthenticationEnabled boolean
View JSON Schema on GitHub

JSON Schema

amazon-neptune-restoredbclusterfromsnapshotrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RestoreDBClusterFromSnapshotRequest",
  "title": "RestoreDBClusterFromSnapshotRequest",
  "type": "object",
  "required": [
    "DBClusterIdentifier",
    "SnapshotIdentifier",
    "Engine"
  ],
  "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": "integer"
    },
    "DBSubnetGroupName": {
      "type": "string"
    },
    "VpcSecurityGroupIds": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "DeletionProtection": {
      "type": "boolean"
    },
    "IAMDatabaseAuthenticationEnabled": {
      "type": "boolean"
    }
  }
}