import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ClusterParameterGroupNameMessage } from "../models/models_0"; import type { ResetClusterParameterGroupMessage } from "../models/models_1"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ResetClusterParameterGroupCommand}. */ export interface ResetClusterParameterGroupCommandInput extends ResetClusterParameterGroupMessage { } /** * @public * * The output of {@link ResetClusterParameterGroupCommand}. */ export interface ResetClusterParameterGroupCommandOutput extends ClusterParameterGroupNameMessage, __MetadataBearer { } declare const ResetClusterParameterGroupCommand_base: { new (input: ResetClusterParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ResetClusterParameterGroupCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Sets one or more parameters of the specified parameter group to their default * values and sets the source values of the parameters to "engine-default". To reset the * entire parameter group specify the ResetAllParameters parameter. * For parameter changes to take effect you must reboot any associated clusters.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, ResetClusterParameterGroupCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, ResetClusterParameterGroupCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // ResetClusterParameterGroupMessage * ParameterGroupName: "STRING_VALUE", // required * ResetAllParameters: true || false, * Parameters: [ // ParametersList * { // Parameter * ParameterName: "STRING_VALUE", * ParameterValue: "STRING_VALUE", * Description: "STRING_VALUE", * Source: "STRING_VALUE", * DataType: "STRING_VALUE", * AllowedValues: "STRING_VALUE", * ApplyType: "static" || "dynamic", * IsModifiable: true || false, * MinimumEngineVersion: "STRING_VALUE", * }, * ], * }; * const command = new ResetClusterParameterGroupCommand(input); * const response = await client.send(command); * // { // ClusterParameterGroupNameMessage * // ParameterGroupName: "STRING_VALUE", * // ParameterGroupStatus: "STRING_VALUE", * // }; * * ``` * * @param ResetClusterParameterGroupCommandInput - {@link ResetClusterParameterGroupCommandInput} * @returns {@link ResetClusterParameterGroupCommandOutput} * @see {@link ResetClusterParameterGroupCommandInput} for command's `input` shape. * @see {@link ResetClusterParameterGroupCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link ClusterParameterGroupNotFoundFault} (client fault) *

The parameter group name does not refer to an existing parameter group.

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

The cluster parameter group action can not be completed because another task is in * progress that involves the parameter group. Wait a few moments and try the operation * again.

* * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class ResetClusterParameterGroupCommand extends ResetClusterParameterGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ResetClusterParameterGroupMessage; output: ClusterParameterGroupNameMessage; }; sdk: { input: ResetClusterParameterGroupCommandInput; output: ResetClusterParameterGroupCommandOutput; }; }; }