import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DBClusterParameterGroupsMessage, DescribeDBClusterParameterGroupsMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeDBClusterParameterGroupsCommand}. */ export interface DescribeDBClusterParameterGroupsCommandInput extends DescribeDBClusterParameterGroupsMessage { } /** * @public * * The output of {@link DescribeDBClusterParameterGroupsCommand}. */ export interface DescribeDBClusterParameterGroupsCommandOutput extends DBClusterParameterGroupsMessage, __MetadataBearer { } declare const DescribeDBClusterParameterGroupsCommand_base: { new (input: DescribeDBClusterParameterGroupsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeDBClusterParameterGroupsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns a list of DBClusterParameterGroup descriptions. If a DBClusterParameterGroupName parameter is specified, the list contains only the description of the specified cluster parameter group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DocDBClient, DescribeDBClusterParameterGroupsCommand } from "@aws-sdk/client-docdb"; // ES Modules import * // const { DocDBClient, DescribeDBClusterParameterGroupsCommand } = require("@aws-sdk/client-docdb"); // CommonJS import * // import type { DocDBClientConfig } from "@aws-sdk/client-docdb"; * const config = {}; // type is DocDBClientConfig * const client = new DocDBClient(config); * const input = { // DescribeDBClusterParameterGroupsMessage * DBClusterParameterGroupName: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeDBClusterParameterGroupsCommand(input); * const response = await client.send(command); * // { // DBClusterParameterGroupsMessage * // Marker: "STRING_VALUE", * // DBClusterParameterGroups: [ // DBClusterParameterGroupList * // { // DBClusterParameterGroup * // DBClusterParameterGroupName: "STRING_VALUE", * // DBParameterGroupFamily: "STRING_VALUE", * // Description: "STRING_VALUE", * // DBClusterParameterGroupArn: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeDBClusterParameterGroupsCommandInput - {@link DescribeDBClusterParameterGroupsCommandInput} * @returns {@link DescribeDBClusterParameterGroupsCommandOutput} * @see {@link DescribeDBClusterParameterGroupsCommandInput} for command's `input` shape. * @see {@link DescribeDBClusterParameterGroupsCommandOutput} for command's `response` shape. * @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape. * * @throws {@link DBParameterGroupNotFoundFault} (client fault) *

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

* * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* * * @public */ export declare class DescribeDBClusterParameterGroupsCommand extends DescribeDBClusterParameterGroupsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDBClusterParameterGroupsMessage; output: DBClusterParameterGroupsMessage; }; sdk: { input: DescribeDBClusterParameterGroupsCommandInput; output: DescribeDBClusterParameterGroupsCommandOutput; }; }; }