Amazon Keyspaces · JSON Structure

Amazon Keyspaces Keyspace Structure

An Amazon Keyspaces keyspace (Cassandra database).

Type: object Properties: 3
CassandraDatabaseManaged DatabaseNoSQLWide Column

Keyspace is a JSON Structure definition published by Amazon Keyspaces, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

keyspaceName resourceArn replicationStrategy

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-keyspaces/refs/heads/main/json-structure/amazon-keyspaces-keyspace-structure.json",
  "name": "Keyspace",
  "description": "An Amazon Keyspaces keyspace (Cassandra database).",
  "type": "object",
  "properties": {
    "keyspaceName": {
      "type": "string",
      "description": "The name of the keyspace.",
      "example": "my_keyspace"
    },
    "resourceArn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the keyspace.",
      "example": "arn:aws:cassandra:us-east-1:123456789012:/keyspace/my_keyspace"
    },
    "replicationStrategy": {
      "type": "string",
      "description": "The replication strategy of the keyspace.",
      "example": "SINGLE_REGION"
    }
  }
}