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

ResetClusterParameterGroupMessage

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

§Properties

§
ParameterGroupName: string
[src]

The name of the cluster parameter group to be reset.

§
Parameters?: Parameter[] | null
[src]

An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied.

Constraints: A maximum of 20 parameters can be reset in a single request.

§
ResetAllParameters?: boolean | null
[src]

If true, all parameters in the specified parameter group will be reset to their default values.

Default: true