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

RelationalDatabaseBundle

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

Describes a database bundle. A bundle describes the performance specifications of the database.

interface RelationalDatabaseBundle {
bundleId?: string | null;
cpuCount?: number | null;
diskSizeInGb?: number | null;
isActive?: boolean | null;
isEncrypted?: boolean | null;
name?: string | null;
price?: number | null;
ramSizeInGb?: number | null;
transferPerMonthInGb?: number | null;
}

§Properties

§
bundleId?: string | null
[src]

The ID for the database bundle.

§
cpuCount?: number | null
[src]

The number of virtual CPUs (vCPUs) for the database bundle.

§
diskSizeInGb?: number | null
[src]

The size of the disk for the database bundle.

§
isActive?: boolean | null
[src]

A Boolean value indicating whether the database bundle is active.

§
isEncrypted?: boolean | null
[src]

A Boolean value indicating whether the database bundle is encrypted.

§
name?: string | null
[src]

The name for the database bundle.

§
price?: number | null
[src]

The cost of the database bundle in US currency.

§
ramSizeInGb?: number | null
[src]

The amount of RAM in GB (for example, 2.0) for the database bundle.

§
transferPerMonthInGb?: number | null
[src]

The data transfer rate per month in GB for the database bundle.