import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DBClusterAutomatedBackupMessage, DescribeDBClusterAutomatedBackupsMessage } from "../models/models_0"; import type { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DescribeDBClusterAutomatedBackupsCommand}. */ export interface DescribeDBClusterAutomatedBackupsCommandInput extends DescribeDBClusterAutomatedBackupsMessage { } /** * @public * * The output of {@link DescribeDBClusterAutomatedBackupsCommand}. */ export interface DescribeDBClusterAutomatedBackupsCommandOutput extends DBClusterAutomatedBackupMessage, __MetadataBearer { } declare const DescribeDBClusterAutomatedBackupsCommand_base: { new (input: DescribeDBClusterAutomatedBackupsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [DescribeDBClusterAutomatedBackupsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Displays backups for both current and deleted DB clusters. For example, use this operation to find details about automated backups for previously deleted clusters. Current clusters are returned for both the DescribeDBClusterAutomatedBackups and DescribeDBClusters operations.

All parameters are optional.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { RDSClient, DescribeDBClusterAutomatedBackupsCommand } from "@aws-sdk/client-rds"; // ES Modules import * // const { RDSClient, DescribeDBClusterAutomatedBackupsCommand } = 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 = { // DescribeDBClusterAutomatedBackupsMessage * DbClusterResourceId: "STRING_VALUE", * DBClusterIdentifier: "STRING_VALUE", * Filters: [ // FilterList * { // Filter * Name: "STRING_VALUE", // required * Values: [ // FilterValueList // required * "STRING_VALUE", * ], * }, * ], * MaxRecords: Number("int"), * Marker: "STRING_VALUE", * }; * const command = new DescribeDBClusterAutomatedBackupsCommand(input); * const response = await client.send(command); * // { // DBClusterAutomatedBackupMessage * // Marker: "STRING_VALUE", * // DBClusterAutomatedBackups: [ // DBClusterAutomatedBackupList * // { // DBClusterAutomatedBackup * // Engine: "STRING_VALUE", * // VpcId: "STRING_VALUE", * // DBClusterAutomatedBackupsArn: "STRING_VALUE", * // DBClusterIdentifier: "STRING_VALUE", * // RestoreWindow: { // RestoreWindow * // EarliestTime: new Date("TIMESTAMP"), * // LatestTime: new Date("TIMESTAMP"), * // }, * // MasterUsername: "STRING_VALUE", * // DbClusterResourceId: "STRING_VALUE", * // Region: "STRING_VALUE", * // LicenseModel: "STRING_VALUE", * // Status: "STRING_VALUE", * // IAMDatabaseAuthenticationEnabled: true || false, * // ClusterCreateTime: new Date("TIMESTAMP"), * // StorageEncrypted: true || false, * // StorageEncryptionType: "none" || "sse-kms" || "sse-rds", * // AllocatedStorage: Number("int"), * // EngineVersion: "STRING_VALUE", * // DBClusterArn: "STRING_VALUE", * // BackupRetentionPeriod: Number("int"), * // PreferredBackupWindow: "STRING_VALUE", * // EngineMode: "STRING_VALUE", * // AvailabilityZones: [ // AvailabilityZones * // "STRING_VALUE", * // ], * // Port: Number("int"), * // KmsKeyId: "STRING_VALUE", * // StorageType: "STRING_VALUE", * // Iops: Number("int"), * // StorageThroughput: Number("int"), * // AwsBackupRecoveryPointArn: "STRING_VALUE", * // TagList: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // }, * // ], * // }; * * ``` * * @param DescribeDBClusterAutomatedBackupsCommandInput - {@link DescribeDBClusterAutomatedBackupsCommandInput} * @returns {@link DescribeDBClusterAutomatedBackupsCommandOutput} * @see {@link DescribeDBClusterAutomatedBackupsCommandInput} for command's `input` shape. * @see {@link DescribeDBClusterAutomatedBackupsCommandOutput} for command's `response` shape. * @see {@link RDSClientResolvedConfig | config} for RDSClient's `config` shape. * * @throws {@link DBClusterAutomatedBackupNotFoundFault} (client fault) *

No automated backup for this DB cluster was found.

* * @throws {@link RDSServiceException} *

Base exception class for all service exceptions from RDS service.

* * * @public */ export declare class DescribeDBClusterAutomatedBackupsCommand extends DescribeDBClusterAutomatedBackupsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeDBClusterAutomatedBackupsMessage; output: DBClusterAutomatedBackupMessage; }; sdk: { input: DescribeDBClusterAutomatedBackupsCommandInput; output: DescribeDBClusterAutomatedBackupsCommandOutput; }; }; }