Interface AstraDatabaseConfig

Represents the options for creating a database.

Field

name - Name of the database--user friendly identifier

Field

cloudProvider - Cloud provider where the database lives

Field

region - Cloud region where the database is located

interface AstraDatabaseConfig {
    cloudProvider?: AstraDbCloudProvider;
    keyspace?: string;
    name: string;
    region: string;
}

Properties

cloudProvider?: AstraDbCloudProvider

Cloud provider where the database lives

keyspace?: string

The default keyspace to use for the database.

name: string

Name of the database (user-friendly identifier)

region: string

The cloud region where the database is located.