Skip to content

Keyspace

Source: src/AWS/Keyspaces/Keyspace.ts

An Amazon Keyspaces (for Apache Cassandra) keyspace — the top-level container for Cassandra tables.

Keyspaces are serverless, free to create, and provisioned near-instantly, so they make excellent building blocks and test fixtures.

Basic Keyspace

const keyspace = yield* Keyspace("AppData", {});

Named Keyspace with Tags

const keyspace = yield* Keyspace("AppData", {
keyspaceName: "app_data",
tags: { team: "platform" },
});