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

Returns the detailed parameter list for a particular parameter group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DAXClient, DescribeParametersCommand } from "@aws-sdk/client-dax"; // ES Modules import * // const { DAXClient, DescribeParametersCommand } = 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 = { // DescribeParametersRequest * ParameterGroupName: "STRING_VALUE", // required * Source: "STRING_VALUE", * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeParametersCommand(input); * const response = await client.send(command); * // { // DescribeParametersResponse * // NextToken: "STRING_VALUE", * // Parameters: [ // ParameterList * // { // Parameter * // ParameterName: "STRING_VALUE", * // ParameterType: "DEFAULT" || "NODE_TYPE_SPECIFIC", * // ParameterValue: "STRING_VALUE", * // NodeTypeSpecificValues: [ // NodeTypeSpecificValueList * // { // NodeTypeSpecificValue * // NodeType: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // Description: "STRING_VALUE", * // Source: "STRING_VALUE", * // DataType: "STRING_VALUE", * // AllowedValues: "STRING_VALUE", * // IsModifiable: "TRUE" || "FALSE" || "CONDITIONAL", * // ChangeType: "IMMEDIATE" || "REQUIRES_REBOOT", * // }, * // ], * // }; * * ``` * * @param DescribeParametersCommandInput - {@link DescribeParametersCommandInput} * @returns {@link DescribeParametersCommandOutput} * @see {@link DescribeParametersCommandInput} for command's `input` shape. * @see {@link DescribeParametersCommandOutput} 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 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 DescribeParametersCommand extends DescribeParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeParametersRequest; output: DescribeParametersResponse; }; sdk: { input: DescribeParametersCommandInput; output: DescribeParametersCommandOutput; }; }; }