import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeDefaultClusterParametersMessage, DescribeDefaultClusterParametersResult } from "../models/models_0"; import type { RedshiftClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RedshiftClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeDefaultClusterParametersCommand}. */ export interface DescribeDefaultClusterParametersCommandInput extends DescribeDefaultClusterParametersMessage { } /** * @public * * The output of {@link DescribeDefaultClusterParametersCommand}. */ export interface DescribeDefaultClusterParametersCommandOutput extends DescribeDefaultClusterParametersResult, __MetadataBearer { } declare const DescribeDefaultClusterParametersCommand_base: { new (input: DescribeDefaultClusterParametersCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DescribeDefaultClusterParametersCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Returns a list of parameter settings for the specified parameter group * family.

*

* For more information about parameters and parameter groups, go to * Amazon Redshift Parameter Groups * in the Amazon Redshift Cluster Management Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RedshiftClient, DescribeDefaultClusterParametersCommand } from "@aws-sdk/client-redshift"; // ES Modules import * // const { RedshiftClient, DescribeDefaultClusterParametersCommand } = require("@aws-sdk/client-redshift"); // CommonJS import * // import type { RedshiftClientConfig } from "@aws-sdk/client-redshift"; * const config = {}; // type is RedshiftClientConfig * const client = new RedshiftClient(config); * const input = { // DescribeDefaultClusterParametersMessage * ParameterGroupFamily: "STRING_VALUE", // required * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeDefaultClusterParametersCommand(input); * const response = await client.send(command); * // { // DescribeDefaultClusterParametersResult * // DefaultClusterParameters: { // DefaultClusterParameters * // ParameterGroupFamily: "STRING_VALUE", * // Marker: "STRING_VALUE", * // Parameters: [ // ParametersList * // { // Parameter * // ParameterName: "STRING_VALUE", * // ParameterValue: "STRING_VALUE", * // Description: "STRING_VALUE", * // Source: "STRING_VALUE", * // DataType: "STRING_VALUE", * // AllowedValues: "STRING_VALUE", * // ApplyType: "static" || "dynamic", * // IsModifiable: true || false, * // MinimumEngineVersion: "STRING_VALUE", * // }, * // ], * // }, * // }; * * ``` * * @param DescribeDefaultClusterParametersCommandInput - {@link DescribeDefaultClusterParametersCommandInput} * @returns {@link DescribeDefaultClusterParametersCommandOutput} * @see {@link DescribeDefaultClusterParametersCommandInput} for command's `input` shape. * @see {@link DescribeDefaultClusterParametersCommandOutput} for command's `response` shape. * @see {@link RedshiftClientResolvedConfig | config} for RedshiftClient's `config` shape. * * @throws {@link RedshiftServiceException} *

Base exception class for all service exceptions from Redshift service.

* * * @public */ export declare class DescribeDefaultClusterParametersCommand extends DescribeDefaultClusterParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDefaultClusterParametersMessage; output: DescribeDefaultClusterParametersResult; }; sdk: { input: DescribeDefaultClusterParametersCommandInput; output: DescribeDefaultClusterParametersCommandOutput; }; }; }