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

ResetDBClusterParameterGroupMessage

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

§Properties

§
DBClusterParameterGroupName: string
[src]

The name of the DB cluster parameter group to reset.

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

A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is set to true.

§
ResetAllParameters?: boolean | null
[src]

A value that is set to true to reset all parameters in the DB cluster parameter group to their default values, and false otherwise. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.