import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DBClusterParameterGroupNameMessage, ResetDBClusterParameterGroupMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ResetDBClusterParameterGroupCommand}. */ export interface ResetDBClusterParameterGroupCommandInput extends ResetDBClusterParameterGroupMessage { } /** * @public * * The output of {@link ResetDBClusterParameterGroupCommand}. */ export interface ResetDBClusterParameterGroupCommandOutput extends DBClusterParameterGroupNameMessage, __MetadataBearer { } declare const ResetDBClusterParameterGroupCommand_base: { new (input: ResetDBClusterParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: ResetDBClusterParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Modifies the parameters of a cluster parameter group to the default value. To * reset specific parameters, submit a list of the following: ParameterName * and ApplyMethod. To reset the entire cluster parameter group, specify * the DBClusterParameterGroupName and ResetAllParameters * parameters.

*

When you reset the entire group, dynamic parameters are updated immediately and * static parameters are set to pending-reboot to take effect on the next DB * instance reboot.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DocDBClient, ResetDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import * // const { DocDBClient, ResetDBClusterParameterGroupCommand } = require("@aws-sdk/client-docdb"); // CommonJS import * // import type { DocDBClientConfig } from "@aws-sdk/client-docdb"; * const config = {}; // type is DocDBClientConfig * const client = new DocDBClient(config); * const input = { // ResetDBClusterParameterGroupMessage * DBClusterParameterGroupName: "STRING_VALUE", // required * ResetAllParameters: true || false, * Parameters: [ // ParametersList * { // Parameter * ParameterName: "STRING_VALUE", * ParameterValue: "STRING_VALUE", * Description: "STRING_VALUE", * Source: "STRING_VALUE", * ApplyType: "STRING_VALUE", * DataType: "STRING_VALUE", * AllowedValues: "STRING_VALUE", * IsModifiable: true || false, * MinimumEngineVersion: "STRING_VALUE", * ApplyMethod: "immediate" || "pending-reboot", * }, * ], * }; * const command = new ResetDBClusterParameterGroupCommand(input); * const response = await client.send(command); * // { // DBClusterParameterGroupNameMessage * // DBClusterParameterGroupName: "STRING_VALUE", * // }; * * ``` * * @param ResetDBClusterParameterGroupCommandInput - {@link ResetDBClusterParameterGroupCommandInput} * @returns {@link ResetDBClusterParameterGroupCommandOutput} * @see {@link ResetDBClusterParameterGroupCommandInput} for command's `input` shape. * @see {@link ResetDBClusterParameterGroupCommandOutput} for command's `response` shape. * @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape. * * @throws {@link DBParameterGroupNotFoundFault} (client fault) *

* DBParameterGroupName doesn't refer to an existing parameter group.

* * @throws {@link InvalidDBParameterGroupStateFault} (client fault) *

The parameter group is in use, or it is in a state that is not valid. If you are trying to delete the parameter group, you can't delete it when the parameter group is in this state.

* * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* * * @public */ export declare class ResetDBClusterParameterGroupCommand extends ResetDBClusterParameterGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ResetDBClusterParameterGroupMessage; output: DBClusterParameterGroupNameMessage; }; sdk: { input: ResetDBClusterParameterGroupCommandInput; output: ResetDBClusterParameterGroupCommandOutput; }; }; }