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

Returns the default system parameter information for the DAX caching * software.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DAXClient, DescribeDefaultParametersCommand } from "@aws-sdk/client-dax"; // ES Modules import * // const { DAXClient, DescribeDefaultParametersCommand } = 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 = { // DescribeDefaultParametersRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new DescribeDefaultParametersCommand(input); * const response = await client.send(command); * // { // DescribeDefaultParametersResponse * // 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 DescribeDefaultParametersCommandInput - {@link DescribeDefaultParametersCommandInput} * @returns {@link DescribeDefaultParametersCommandOutput} * @see {@link DescribeDefaultParametersCommandInput} for command's `input` shape. * @see {@link DescribeDefaultParametersCommandOutput} 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 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 DescribeDefaultParametersCommand extends DescribeDefaultParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDefaultParametersRequest; output: DescribeDefaultParametersResponse; }; sdk: { input: DescribeDefaultParametersCommandInput; output: DescribeDefaultParametersCommandOutput; }; }; }