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

Modifies the parameters of a cluster parameter group. To modify more than one * parameter, submit a list of the following: ParameterName, * ParameterValue, and ApplyMethod. A maximum of 20 * parameters can be modified in a single request.

* *

Changes to dynamic parameters are applied immediately. Changes to static * parameters require a reboot or maintenance window * * before the change can take effect.

*
* *

After you create a cluster parameter group, you should wait at least 5 minutes * before creating your first cluster that uses that cluster parameter group as * the default parameter group. This allows Amazon DocumentDB to fully complete the create action * before the parameter group is used as the default for a new cluster. This step is * especially important for parameters that are critical when creating the default * database for a cluster, such as the character set for the default database * defined by the character_set_database parameter.

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