Amazon Neptune · Schema

DBClusterMember

A member instance of a Neptune DB cluster.

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
DBInstanceIdentifier string The instance identifier.
IsClusterWriter boolean Whether the instance is the primary (writer) instance.
DBClusterParameterGroupStatus string The status of the parameter group for this member.
PromotionTier integer Failover priority for the instance.
View JSON Schema on GitHub

JSON Schema

amazon-neptune-dbclustermember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DBClusterMember",
  "title": "DBClusterMember",
  "type": "object",
  "description": "A member instance of a Neptune DB cluster.",
  "properties": {
    "DBInstanceIdentifier": {
      "type": "string",
      "description": "The instance identifier."
    },
    "IsClusterWriter": {
      "type": "boolean",
      "description": "Whether the instance is the primary (writer) instance."
    },
    "DBClusterParameterGroupStatus": {
      "type": "string",
      "description": "The status of the parameter group for this member."
    },
    "PromotionTier": {
      "type": "integer",
      "description": "Failover priority for the instance."
    }
  }
}