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

RelationalDatabaseParameter

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

Describes the parameters of a database.

interface RelationalDatabaseParameter {
allowedValues?: string | null;
applyMethod?: string | null;
applyType?: string | null;
dataType?: string | null;
description?: string | null;
isModifiable?: boolean | null;
parameterName?: string | null;
parameterValue?: string | null;
}

§Properties

§
allowedValues?: string | null
[src]

Specifies the valid range of values for the parameter.

§
applyMethod?: string | null
[src]

Indicates when parameter updates are applied.

Can be immediate or pending-reboot.

§
applyType?: string | null
[src]

Specifies the engine-specific parameter type.

§
dataType?: string | null
[src]

Specifies the valid data type for the parameter.

§
description?: string | null
[src]

Provides a description of the parameter.

§
isModifiable?: boolean | null
[src]

A Boolean value indicating whether the parameter can be modified.

§
parameterName?: string | null
[src]

Specifies the name of the parameter.

§
parameterValue?: string | null
[src]

Specifies the value of the parameter.