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.
Creating a Keyspace
Section titled “Creating a Keyspace”Basic Keyspace
const keyspace = yield* Keyspace("AppData", {});Named Keyspace with Tags
const keyspace = yield* Keyspace("AppData", { keyspaceName: "app_data", tags: { team: "platform" },});