Amazon Keyspaces · Schema

Keyspace

An Amazon Keyspaces keyspace (Cassandra database).

CassandraDatabaseManaged DatabaseNoSQLWide Column

Properties

Name Type Description
keyspaceName string The name of the keyspace.
resourceArn string The Amazon Resource Name (ARN) of the keyspace.
replicationStrategy string The replication strategy of the keyspace.
View JSON Schema on GitHub

JSON Schema

amazon-keyspaces-keyspace-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-keyspaces/refs/heads/main/json-schema/amazon-keyspaces-keyspace-schema.json",
  "title": "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"
    }
  }
}