Amazon Keyspaces · JSON Structure

Amazon Keyspaces Table Structure

An Amazon Keyspaces table.

Type: object Properties: 5
CassandraDatabaseManaged DatabaseNoSQLWide Column

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

Properties

keyspaceName tableName resourceArn status creationTimestamp

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-table-structure.json",
  "name": "Table",
  "description": "An Amazon Keyspaces table.",
  "type": "object",
  "properties": {
    "keyspaceName": {
      "type": "string",
      "description": "The name of the keyspace that the table is associated with.",
      "example": "my_keyspace"
    },
    "tableName": {
      "type": "string",
      "description": "The name of the table.",
      "example": "my_table"
    },
    "resourceArn": {
      "type": "string",
      "description": "The Amazon Resource Name (ARN) of the table.",
      "example": "arn:aws:cassandra:us-east-1:123456789012:/keyspace/my_keyspace/table/my_table"
    },
    "status": {
      "type": "string",
      "description": "The current status of the table.",
      "example": "ACTIVE",
      "enum": [
        "ACTIVE",
        "CREATING",
        "UPDATING",
        "DELETING",
        "DELETED",
        "RESTORING",
        "INACCESSIBLE_ENCRYPTION_CREDENTIALS"
      ]
    },
    "creationTimestamp": {
      "type": "datetime",
      "description": "The timestamp of when the table was created."
    }
  }
}