Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

RelationalDatabaseBlueprint

import type { RelationalDatabaseBlueprint } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";

Describes a database image, or blueprint. A blueprint describes the major engine version of a database.

interface RelationalDatabaseBlueprint {
blueprintId?: string | null;
engine?: RelationalDatabaseEngine | null;
engineDescription?: string | null;
engineVersion?: string | null;
engineVersionDescription?: string | null;
isEngineDefault?: boolean | null;
}

§Properties

§
blueprintId?: string | null
[src]

The ID for the database blueprint.

§

The database software of the database blueprint (for example, MySQL).

§
engineDescription?: string | null
[src]

The description of the database engine for the database blueprint.

§
engineVersion?: string | null
[src]

The database engine version for the database blueprint (for example, 5.7.23).

§
engineVersionDescription?: string | null
[src]

The description of the database engine version for the database blueprint.

§
isEngineDefault?: boolean | null
[src]

A Boolean value indicating whether the engine version is the default for the database blueprint.