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 { CreateParameterGroupRequest, CreateParameterGroupResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link CreateParameterGroupCommand}. */ export interface CreateParameterGroupCommandInput extends CreateParameterGroupRequest { } /** * @public * * The output of {@link CreateParameterGroupCommand}. */ export interface CreateParameterGroupCommandOutput extends CreateParameterGroupResponse, __MetadataBearer { } declare const CreateParameterGroupCommand_base: { new (input: CreateParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateParameterGroupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Creates a new parameter group. A parameter group is a collection of parameters that * you apply to all of the nodes in a DAX cluster.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DAXClient, CreateParameterGroupCommand } from "@aws-sdk/client-dax"; // ES Modules import * // const { DAXClient, CreateParameterGroupCommand } = 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 = { // CreateParameterGroupRequest * ParameterGroupName: "STRING_VALUE", // required * Description: "STRING_VALUE", * }; * const command = new CreateParameterGroupCommand(input); * const response = await client.send(command); * // { // CreateParameterGroupResponse * // ParameterGroup: { // ParameterGroup * // ParameterGroupName: "STRING_VALUE", * // Description: "STRING_VALUE", * // }, * // }; * * ``` * * @param CreateParameterGroupCommandInput - {@link CreateParameterGroupCommandInput} * @returns {@link CreateParameterGroupCommandOutput} * @see {@link CreateParameterGroupCommandInput} for command's `input` shape. * @see {@link CreateParameterGroupCommandOutput} 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 ParameterGroupAlreadyExistsFault} (client fault) *

The specified parameter group already exists.

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

You have attempted to exceed the maximum number of parameter groups.

* * @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 CreateParameterGroupCommand extends CreateParameterGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateParameterGroupRequest; output: CreateParameterGroupResponse; }; sdk: { input: CreateParameterGroupCommandInput; output: CreateParameterGroupCommandOutput; }; }; }