import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DAXClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DAXClient"; import type { DeleteParameterGroupRequest, DeleteParameterGroupResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteParameterGroupCommand}. */ export interface DeleteParameterGroupCommandInput extends DeleteParameterGroupRequest { } /** * @public * * The output of {@link DeleteParameterGroupCommand}. */ export interface DeleteParameterGroupCommandOutput extends DeleteParameterGroupResponse, __MetadataBearer { } declare const DeleteParameterGroupCommand_base: { new (input: DeleteParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Deletes the specified parameter group. You cannot delete a parameter group if it is * associated with any DAX clusters.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DAXClient, DeleteParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import * // const { DAXClient, DeleteParameterGroupCommand } = require("@aws-sdk/client-dax"); // CommonJS import * // import type { DAXClientConfig } from "@aws-sdk/client-dax"; * const config = {}; // type is DAXClientConfig * const client = new DAXClient(config); * const input = { // DeleteParameterGroupRequest * ParameterGroupName: "STRING_VALUE", // required * }; * const command = new DeleteParameterGroupCommand(input); * const response = await client.send(command); * // { // DeleteParameterGroupResponse * // DeletionMessage: "STRING_VALUE", * // }; * * ``` * * @param DeleteParameterGroupCommandInput - {@link DeleteParameterGroupCommandInput} * @returns {@link DeleteParameterGroupCommandOutput} * @see {@link DeleteParameterGroupCommandInput} for command's `input` shape. * @see {@link DeleteParameterGroupCommandOutput} for command's `response` shape. * @see {@link DAXClientResolvedConfig | config} for DAXClient's `config` shape. * * @throws {@link InvalidParameterCombinationException} (client fault) *

Two or more incompatible parameters were specified.

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

One or more parameters in a parameter group are in an invalid state.

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

The value for a parameter is invalid.

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

The specified parameter group does not exist.

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

The specified service linked role (SLR) was not found.

* * @throws {@link DAXServiceException} *

Base exception class for all service exceptions from DAX service.

* * * @public */ export declare class DeleteParameterGroupCommand extends DeleteParameterGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteParameterGroupRequest; output: DeleteParameterGroupResponse; }; sdk: { input: DeleteParameterGroupCommandInput; output: DeleteParameterGroupCommandOutput; }; }; }