Amazon Neptune · Schema
DBClusterSnapshot
Contains the details of a Neptune DB cluster snapshot.
DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL
Properties
| Name | Type | Description |
|---|---|---|
| DBClusterSnapshotIdentifier | string | The identifier of the cluster snapshot. |
| DBClusterIdentifier | string | The cluster identifier of the source cluster. |
| SnapshotCreateTime | string | |
| Engine | string | |
| EngineVersion | string | |
| Status | string | The status of the snapshot. |
| AllocatedStorage | integer | |
| VpcId | string | |
| Port | integer | |
| StorageEncrypted | boolean | |
| KmsKeyId | string | |
| DBClusterSnapshotArn | string | |
| SnapshotType | string | The type of the snapshot (manual or automated). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DBClusterSnapshot",
"title": "DBClusterSnapshot",
"type": "object",
"description": "Contains the details of a Neptune DB cluster snapshot.",
"properties": {
"DBClusterSnapshotIdentifier": {
"type": "string",
"description": "The identifier of the cluster snapshot."
},
"DBClusterIdentifier": {
"type": "string",
"description": "The cluster identifier of the source cluster."
},
"SnapshotCreateTime": {
"type": "string",
"format": "date-time"
},
"Engine": {
"type": "string"
},
"EngineVersion": {
"type": "string"
},
"Status": {
"type": "string",
"description": "The status of the snapshot."
},
"AllocatedStorage": {
"type": "integer"
},
"VpcId": {
"type": "string"
},
"Port": {
"type": "integer"
},
"StorageEncrypted": {
"type": "boolean"
},
"KmsKeyId": {
"type": "string"
},
"DBClusterSnapshotArn": {
"type": "string"
},
"SnapshotType": {
"type": "string",
"description": "The type of the snapshot (manual or automated)."
}
}
}