Interface DatabaseConfig

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 DatabaseConfig {
    cloudProvider?: DatabaseCloudProvider;
    name: string;
    namespace?: string;
    region: string;
}

Properties

cloudProvider?: DatabaseCloudProvider

Cloud provider where the database lives

name: string

Name of the database (user-friendly identifier)

namespace?: string

The default namespace to use for the database.

region: string

The cloud region where the database is located.