interface BigtableDatabaseOptions
Since 0.2.0

The 'bigtable' arm — a Google Cloud Bigtable wide-column backend.

Examples

Example 1

const options: BigtableDatabaseOptions = {
  type: 'bigtable',
  options: { projectId: 'my-project', instance: 'app-instance' },
};

Properties

readonly
type: "bigtable"

Selects the Bigtable arm.

Bigtable adapter configuration; instance and one client form are required.

Usage

import { type BigtableDatabaseOptions } from "database-plugin/src/index.ts";