Amazon Neptune · Schema

DBSubnetGroup

Contains the details of a Neptune DB subnet group.

DatabaseGraph DatabaseGremlinNeptuneProperty GraphRDFSPARQL

Properties

Name Type Description
DBSubnetGroupName string
DBSubnetGroupDescription string
VpcId string
SubnetGroupStatus string
Subnets array
DBSubnetGroupArn string
View JSON Schema on GitHub

JSON Schema

management-db-subnet-group-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-neptune/refs/heads/main/json-schema/management-db-subnet-group-schema.json",
  "title": "DBSubnetGroup",
  "description": "Contains the details of a Neptune DB subnet group.",
  "type": "object",
  "properties": {
    "DBSubnetGroupName": {
      "type": "string"
    },
    "DBSubnetGroupDescription": {
      "type": "string"
    },
    "VpcId": {
      "type": "string"
    },
    "SubnetGroupStatus": {
      "type": "string"
    },
    "Subnets": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "SubnetIdentifier": {
            "type": "string"
          },
          "SubnetAvailabilityZone": {
            "type": "object",
            "properties": {
              "Name": {
                "type": "string"
              }
            }
          },
          "SubnetStatus": {
            "type": "string"
          }
        }
      }
    },
    "DBSubnetGroupArn": {
      "type": "string"
    }
  }
}