import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DBClusterParameterGroupDetails, DescribeDBClusterParametersMessage } from "../models/models_0"; import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeDBClusterParametersCommand}. */ export interface DescribeDBClusterParametersCommandInput extends DescribeDBClusterParametersMessage { } /** * @public * * The output of {@link DescribeDBClusterParametersCommand}. */ export interface DescribeDBClusterParametersCommandOutput extends DBClusterParameterGroupDetails, __MetadataBearer { } declare const DescribeDBClusterParametersCommand_base: { new (input: DescribeDBClusterParametersCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeDBClusterParametersCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns the detailed parameter list for a particular DB cluster parameter group.

For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.

For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DescribeDBClusterParametersCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DescribeDBClusterParametersCommand } = require("@aws-sdk/client-rds"); // CommonJS import * // import type { RDSClientConfig } from "@aws-sdk/client-rds"; * const config = {}; // type is RDSClientConfig * const client = new RDSClient(config); * const input = { // DescribeDBClusterParametersMessage * DBClusterParameterGroupName: "STRING_VALUE", // required * Source: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeDBClusterParametersCommand(input); * const response = await client.send(command); * // { // DBClusterParameterGroupDetails * // Parameters: [ // ParametersList * // { // Parameter * // ParameterName: "STRING_VALUE", * // ParameterValue: "STRING_VALUE", * // Description: "STRING_VALUE", * // Source: "STRING_VALUE", * // ApplyType: "STRING_VALUE", * // DataType: "STRING_VALUE", * // AllowedValues: "STRING_VALUE", * // IsModifiable: true || false, * // MinimumEngineVersion: "STRING_VALUE", * // ApplyMethod: "immediate" || "pending-reboot", * // SupportedEngineModes: [ // EngineModeList * // "STRING_VALUE", * // ], * // }, * // ], * // Marker: "STRING_VALUE", * // }; * * ``` * * @param DescribeDBClusterParametersCommandInput - {@link DescribeDBClusterParametersCommandInput} * @returns {@link DescribeDBClusterParametersCommandOutput} * @see {@link DescribeDBClusterParametersCommandInput} for command's `input` shape. * @see {@link DescribeDBClusterParametersCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBParameterGroupNotFoundFault} (client fault) *

DBParameterGroupName doesn't refer to an existing DB parameter group.

* * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @example To describe the parameters in a DB cluster parameter group * ```javascript * // The following example retrieves details about the parameters in a DB cluster parameter group. * const input = { * DBClusterParameterGroupName: "mydbclusterpg" * }; * const command = new DescribeDBClusterParametersCommand(input); * const response = await client.send(command); * /* response is * { * Parameters: [ * { * AllowedValues: "0,1", * ApplyMethod: "pending-reboot", * ApplyType: "static", * DataType: "boolean", * Description: "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded", * IsModifiable: false, * ParameterName: "allow-suspicious-udfs", * Source: "engine-default", * SupportedEngineModes: [ * "provisioned" * ] * }, * { * AllowedValues: "0,1", * ApplyMethod: "pending-reboot", * ApplyType: "static", * DataType: "boolean", * Description: "Enables new features in the Aurora engine.", * IsModifiable: true, * ParameterName: "aurora_lab_mode", * ParameterValue: "0", * Source: "engine-default", * SupportedEngineModes: [ * "provisioned" * ] * } * ] * } * *\/ * ``` * * @public */ export declare class DescribeDBClusterParametersCommand extends DescribeDBClusterParametersCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDBClusterParametersMessage; output: DBClusterParameterGroupDetails; }; sdk: { input: DescribeDBClusterParametersCommandInput; output: DescribeDBClusterParametersCommandOutput; }; }; }