import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DeleteDbBackupInput, DeleteDbBackupOutput } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DeleteDbBackupCommand}. */ export interface DeleteDbBackupCommandInput extends DeleteDbBackupInput { } /** * @public * * The output of {@link DeleteDbBackupCommand}. */ export interface DeleteDbBackupCommandOutput extends DeleteDbBackupOutput, __MetadataBearer { } declare const DeleteDbBackupCommand_base: { new (input: DeleteDbBackupCommandInput): import("@smithy/core/client").CommandImpl; new (input: DeleteDbBackupCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Deletes a Timestream for InfluxDB backup.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TimestreamInfluxDBClient, DeleteDbBackupCommand } from "@aws-sdk/client-timestream-influxdb"; // ES Modules import * // const { TimestreamInfluxDBClient, DeleteDbBackupCommand } = require("@aws-sdk/client-timestream-influxdb"); // CommonJS import * // import type { TimestreamInfluxDBClientConfig } from "@aws-sdk/client-timestream-influxdb"; * const config = {}; // type is TimestreamInfluxDBClientConfig * const client = new TimestreamInfluxDBClient(config); * const input = { // DeleteDbBackupInput * identifier: "STRING_VALUE", // required * }; * const command = new DeleteDbBackupCommand(input); * const response = await client.send(command); * // { // DeleteDbBackupOutput * // id: "STRING_VALUE", // required * // name: "STRING_VALUE", * // arn: "STRING_VALUE", // required * // status: "IN_PROGRESS" || "COMPLETED" || "FAILED" || "DELETING" || "DELETED", * // createdAt: new Date("TIMESTAMP"), * // expiresAfter: "STRING_VALUE", * // dbResourceId: "STRING_VALUE", * // type: "HOURLY" || "DAILY" || "WEEKLY" || "MONTHLY" || "CUSTOM_SCHEDULE" || "ON_DEMAND" || "CONTINUOUS", * // engineType: "INFLUXDB_V2" || "INFLUXDB_V3_CORE" || "INFLUXDB_V3_ENTERPRISE", * // deploymentType: "SINGLE_AZ" || "WITH_MULTIAZ_STANDBY" || "MULTI_NODE_READ_REPLICAS", * // kmsKeyId: "STRING_VALUE", * // clusterConfiguration: { // ClusterConfiguration * // ingestQueryInstances: Number("int"), * // queryOnlyInstances: Number("int"), * // dedicatedCompactor: true || false, * // }, * // dbParameterGroupId: "STRING_VALUE", * // dbInstanceType: "db.influx.medium" || "db.influx.large" || "db.influx.xlarge" || "db.influx.2xlarge" || "db.influx.4xlarge" || "db.influx.8xlarge" || "db.influx.12xlarge" || "db.influx.16xlarge" || "db.influx.24xlarge", * // logDeliveryConfiguration: { // LogDeliveryConfiguration * // s3Configuration: { // S3Configuration * // bucketName: "STRING_VALUE", // required * // enabled: true || false, // required * // }, * // }, * // failoverMode: "AUTOMATIC" || "NO_FAILOVER", * // dbStorageType: "InfluxIOIncludedT1" || "InfluxIOIncludedT2" || "InfluxIOIncludedT3", * // allocatedStorage: Number("int"), * // vpcSubnetIds: [ // VpcSubnetIdList * // "STRING_VALUE", * // ], * // vpcSecurityGroupIds: [ // VpcSecurityGroupIdList * // "STRING_VALUE", * // ], * // publiclyAccessible: true || false, * // port: Number("int"), * // networkType: "IPV4" || "DUAL", * // influxAuthParametersSecretArn: "STRING_VALUE", * // maintenanceSchedule: { // MaintenanceSchedule * // timezone: "STRING_VALUE", // required * // preferredMaintenanceWindow: "STRING_VALUE", // required * // }, * // }; * * ``` * * @param DeleteDbBackupCommandInput - {@link DeleteDbBackupCommandInput} * @returns {@link DeleteDbBackupCommandOutput} * @see {@link DeleteDbBackupCommandInput} for command's `input` shape. * @see {@link DeleteDbBackupCommandOutput} for command's `response` shape. * @see {@link TimestreamInfluxDBClientResolvedConfig | config} for TimestreamInfluxDBClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You do not have sufficient access to perform this action.

* * @throws {@link ConflictException} (client fault) *

The request conflicts with an existing resource in Timestream for InfluxDB.

* * @throws {@link InternalServerException} (server fault) *

The request processing has failed because of an unknown error, exception or failure.

* * @throws {@link ResourceNotFoundException} (client fault) *

The requested resource was not found or does not exist.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link ValidationException} (client fault) *

The input fails to satisfy the constraints specified by Timestream for InfluxDB.

* * @throws {@link TimestreamInfluxDBServiceException} *

Base exception class for all service exceptions from TimestreamInfluxDB service.

* * * @public */ export declare class DeleteDbBackupCommand extends DeleteDbBackupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteDbBackupInput; output: DeleteDbBackupOutput; }; sdk: { input: DeleteDbBackupCommandInput; output: DeleteDbBackupCommandOutput; }; }; }