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

Modifies the parameters of a parameter group. For the parameters parameter, it can't contain ASCII characters.

*

* For more information about parameters and parameter groups, go to * Amazon Redshift Parameter Groups * in the Amazon Redshift Cluster Management Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, ModifyClusterParameterGroupCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, ModifyClusterParameterGroupCommand } = 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 = { // ModifyClusterParameterGroupMessage * ParameterGroupName: "STRING_VALUE", // required * Parameters: [ // ParametersList // required * { // 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 ModifyClusterParameterGroupCommand(input); * const response = await client.send(command); * // { // ClusterParameterGroupNameMessage * // ParameterGroupName: "STRING_VALUE", * // ParameterGroupStatus: "STRING_VALUE", * // }; * * ``` * * @param ModifyClusterParameterGroupCommandInput - {@link ModifyClusterParameterGroupCommandInput} * @returns {@link ModifyClusterParameterGroupCommandOutput} * @see {@link ModifyClusterParameterGroupCommandInput} for command's `input` shape. * @see {@link ModifyClusterParameterGroupCommandOutput} 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 ModifyClusterParameterGroupCommand extends ModifyClusterParameterGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyClusterParameterGroupMessage; output: ClusterParameterGroupNameMessage; }; sdk: { input: ModifyClusterParameterGroupCommandInput; output: ModifyClusterParameterGroupCommandOutput; }; }; }