import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DBClusterSnapshotMessage, DescribeDBClusterSnapshotsMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeDBClusterSnapshotsCommand}. */ export interface DescribeDBClusterSnapshotsCommandInput extends DescribeDBClusterSnapshotsMessage { } /** * @public * * The output of {@link DescribeDBClusterSnapshotsCommand}. */ export interface DescribeDBClusterSnapshotsCommandOutput extends DBClusterSnapshotMessage, __MetadataBearer { } declare const DescribeDBClusterSnapshotsCommand_base: { new (input: DescribeDBClusterSnapshotsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeDBClusterSnapshotsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns information about cluster snapshots. This API operation supports pagination.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DocDBClient, DescribeDBClusterSnapshotsCommand } from "@aws-sdk/client-docdb"; // ES Modules import * // const { DocDBClient, DescribeDBClusterSnapshotsCommand } = 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 = { // DescribeDBClusterSnapshotsMessage * DBClusterIdentifier: "STRING_VALUE", * DBClusterSnapshotIdentifier: "STRING_VALUE", * SnapshotType: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * IncludeShared: true || false, * IncludePublic: true || false, * }; * const command = new DescribeDBClusterSnapshotsCommand(input); * const response = await client.send(command); * // { // DBClusterSnapshotMessage * // Marker: "STRING_VALUE", * // DBClusterSnapshots: [ // DBClusterSnapshotList * // { // DBClusterSnapshot * // AvailabilityZones: [ // AvailabilityZones * // "STRING_VALUE", * // ], * // DBClusterSnapshotIdentifier: "STRING_VALUE", * // DBClusterIdentifier: "STRING_VALUE", * // SnapshotCreateTime: new Date("TIMESTAMP"), * // Engine: "STRING_VALUE", * // Status: "STRING_VALUE", * // Port: Number("int"), * // VpcId: "STRING_VALUE", * // ClusterCreateTime: new Date("TIMESTAMP"), * // MasterUsername: "STRING_VALUE", * // EngineVersion: "STRING_VALUE", * // SnapshotType: "STRING_VALUE", * // PercentProgress: Number("int"), * // StorageEncrypted: true || false, * // KmsKeyId: "STRING_VALUE", * // DBClusterSnapshotArn: "STRING_VALUE", * // SourceDBClusterSnapshotArn: "STRING_VALUE", * // StorageType: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param DescribeDBClusterSnapshotsCommandInput - {@link DescribeDBClusterSnapshotsCommandInput} * @returns {@link DescribeDBClusterSnapshotsCommandOutput} * @see {@link DescribeDBClusterSnapshotsCommandInput} for command's `input` shape. * @see {@link DescribeDBClusterSnapshotsCommandOutput} for command's `response` shape. * @see {@link DocDBClientResolvedConfig | config} for DocDBClient's `config` shape. * * @throws {@link DBClusterSnapshotNotFoundFault} (client fault) *

* DBClusterSnapshotIdentifier doesn't refer to an existing cluster snapshot.

* * @throws {@link DocDBServiceException} *

Base exception class for all service exceptions from DocDB service.

* * * @public */ export declare class DescribeDBClusterSnapshotsCommand extends DescribeDBClusterSnapshotsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDBClusterSnapshotsMessage; output: DBClusterSnapshotMessage; }; sdk: { input: DescribeDBClusterSnapshotsCommandInput; output: DescribeDBClusterSnapshotsCommandOutput; }; }; }