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

ResetCacheParameterGroupMessage

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

Represents the input of a ResetCacheParameterGroup operation.

interface ResetCacheParameterGroupMessage {
CacheParameterGroupName: string;
ParameterNameValues?: ParameterNameValue[] | null;
ResetAllParameters?: boolean | null;
}

§Properties

§
CacheParameterGroupName: string
[src]

The name of the cache parameter group to reset.

§
ParameterNameValues?: ParameterNameValue[] | null
[src]

An array of parameter names to reset to their default values. If ResetAllParameters is true, do not use ParameterNameValues. If ResetAllParameters is false, you must specify the name of at least one parameter to reset.

§
ResetAllParameters?: boolean | null
[src]

If true, all parameters in the cache parameter group are reset to their default values. If false, only the parameters listed by ParameterNameValues are reset to their default values.

Valid values: true | false