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.4/services/rds.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.

MySQL

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

MariaDB

Valid Values (for Apply method): immediate | pending-reboot

You can use the immediate value with dynamic parameters only. You can use the pending-reboot value for both dynamic and static parameters, and changes are applied when DB instance reboots.

Oracle

Valid Values (for Apply method): pending-reboot

§
ResetAllParameters?: boolean | null
[src]

A value that indicates whether to reset all parameters in the DB parameter group to default values. By default, all parameters in the DB parameter group are reset to default values.