import type * as backup from "@distilled.cloud/aws/backup"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { BackupVault } from "./BackupVault.ts"; /** * `DeleteRecoveryPoint` request with `BackupVaultName` injected from the * bound {@link BackupVault}. */ export interface DeleteRecoveryPointRequest extends Omit { } /** * Runtime binding for the `DeleteRecoveryPoint` operation (IAM action * `backup:DeleteRecoveryPoint`). * * Deletes a recovery point from the bound {@link BackupVault} — e.g. a * retention janitor pruning on-demand backups. Provide the implementation * with `Effect.provide(AWS.Backup.DeleteRecoveryPointHttp)`. * ### Recovery Points * **Example:** Prune A Recovery Point * ```typescript * const deleteRecoveryPoint = yield* AWS.Backup.DeleteRecoveryPoint(vault); * * yield* deleteRecoveryPoint({ RecoveryPointArn: recoveryPointArn }); * ``` * * @binding */ export interface DeleteRecoveryPoint extends Binding.Service Effect.Effect<(request: DeleteRecoveryPointRequest) => Effect.Effect>> { } export declare const DeleteRecoveryPoint: DeleteRecoveryPoint; //# sourceMappingURL=DeleteRecoveryPoint.d.ts.map