import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateDBClusterParameterGroupMessage, CreateDBClusterParameterGroupResult } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateDBClusterParameterGroupCommand}. */ export interface CreateDBClusterParameterGroupCommandInput extends CreateDBClusterParameterGroupMessage { } /** * @public * * The output of {@link CreateDBClusterParameterGroupCommand}. */ export interface CreateDBClusterParameterGroupCommandOutput extends CreateDBClusterParameterGroupResult, __MetadataBearer { } declare const CreateDBClusterParameterGroupCommand_base: { new (input: CreateDBClusterParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateDBClusterParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a new cluster parameter group.

*

Parameters in a cluster parameter group apply to all of the * instances in a cluster.

*

A cluster parameter group is initially created with the default * parameters for the database engine used by instances in the cluster. * In Amazon DocumentDB, you cannot make modifications directly to the * default.docdb3.6 cluster parameter group. If your * Amazon DocumentDB cluster is using the default cluster parameter group and you * want to modify a value in it, you must first * create a new parameter group * or * copy an existing parameter group, * modify it, and then apply the modified parameter group to your * cluster. For the new cluster parameter group and associated settings * to take effect, you must then reboot the instances in the cluster * without failover. For more information, * see * Modifying Amazon DocumentDB Cluster Parameter Groups. *

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DocDBClient, CreateDBClusterParameterGroupCommand } from "@aws-sdk/client-docdb"; // ES Modules import * // const { DocDBClient, CreateDBClusterParameterGroupCommand } = 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 = { // CreateDBClusterParameterGroupMessage * DBClusterParameterGroupName: "STRING_VALUE", // required * DBParameterGroupFamily: "STRING_VALUE", // required * Description: "STRING_VALUE", // required * Tags: [ // TagList * { // Tag * Key: "STRING_VALUE", * Value: "STRING_VALUE", * }, * ], * }; * const command = new CreateDBClusterParameterGroupCommand(input); * const response = await client.send(command); * // { // CreateDBClusterParameterGroupResult * // DBClusterParameterGroup: { // DBClusterParameterGroup * // DBClusterParameterGroupName: "STRING_VALUE", * // DBParameterGroupFamily: "STRING_VALUE", * // Description: "STRING_VALUE", * // DBClusterParameterGroupArn: "STRING_VALUE", * // }, * // }; * * ``` * * @param CreateDBClusterParameterGroupCommandInput - {@link CreateDBClusterParameterGroupCommandInput} * @returns {@link CreateDBClusterParameterGroupCommandOutput} * @see {@link CreateDBClusterParameterGroupCommandInput} for command's `input` shape. * @see {@link CreateDBClusterParameterGroupCommandOutput} for command's `response` shape. * @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape. * * @throws {@link DBParameterGroupAlreadyExistsFault} (client fault) *

A parameter group with the same name already exists.

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

This request would cause you to exceed the allowed number of parameter groups.

* * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* * * @public */ export declare class CreateDBClusterParameterGroupCommand extends CreateDBClusterParameterGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateDBClusterParameterGroupMessage; output: CreateDBClusterParameterGroupResult; }; sdk: { input: CreateDBClusterParameterGroupCommandInput; output: CreateDBClusterParameterGroupCommandOutput; }; }; }