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

ResetDBParameterGroupMessage

import type { ResetDBParameterGroupMessage } from "https://aws-api.deno.dev/v0.3/services/neptune.ts?docs=full";
interface ResetDBParameterGroupMessage {
DBParameterGroupName: string;
Parameters?: Parameter[] | null;
ResetAllParameters?: boolean | null;
}

§Properties

§
DBParameterGroupName: string
[src]

The name of the DB parameter group.

Constraints:

  • Must match the name of an existing DBParameterGroup.
§
Parameters?: Parameter[] | null
[src]

To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request.

Valid Values (for Apply method): pending-reboot

§
ResetAllParameters?: boolean | null
[src]

Specifies whether (true) or not (false) to reset all parameters in the DB parameter group to default values.

Default: true