import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteDBClusterParameterGroupMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteDBClusterParameterGroupCommand}. */ export interface DeleteDBClusterParameterGroupCommandInput extends DeleteDBClusterParameterGroupMessage { } /** * @public * * The output of {@link DeleteDBClusterParameterGroupCommand}. */ export interface DeleteDBClusterParameterGroupCommandOutput extends __MetadataBearer { } declare const DeleteDBClusterParameterGroupCommand_base: { new (input: DeleteDBClusterParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteDBClusterParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a specified cluster parameter group. The cluster parameter group to be deleted can't be associated with any clusters.

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