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

Parameter

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

Specifies a parameter.

interface Parameter {
AllowedValues?: string | null;
ApplyMethod?: ApplyMethod | null;
ApplyType?: string | null;
DataType?: string | null;
Description?: string | null;
IsModifiable?: boolean | null;
MinimumEngineVersion?: string | null;
ParameterName?: string | null;
ParameterValue?: string | null;
Source?: string | null;
}

§Properties

§
AllowedValues?: string | null
[src]

Specifies the valid range of values for the parameter.

§
ApplyMethod?: ApplyMethod | null
[src]

Indicates when to apply parameter updates.

§
ApplyType?: string | null
[src]

Specifies the engine specific parameters 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]

Indicates whether (true) or not (false) the parameter can be modified. Some parameters have security or operational implications that prevent them from being changed.

§
MinimumEngineVersion?: string | null
[src]

The earliest engine version to which the parameter can apply.

§
ParameterName?: string | null
[src]

Specifies the name of the parameter.

§
ParameterValue?: string | null
[src]

Specifies the value of the parameter.

§
Source?: string | null
[src]

Indicates the source of the parameter value.