import type * as docdbelastic from "@distilled.cloud/aws/docdb-elastic"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for the `DeleteClusterSnapshot` operation (IAM action * `docdb-elastic:DeleteClusterSnapshot`). * * Deletes a manual elastic-cluster snapshot by ARN — e.g. from a Lambda that * prunes on-demand backups past a retention horizon. Provide the * implementation with * `Effect.provide(AWS.DocDBElastic.DeleteClusterSnapshotHttp)`. * ### Managing Snapshots * **Example:** Prune an Old Snapshot * ```typescript * const deleteSnapshot = yield* DocDBElastic.DeleteClusterSnapshot(); * * const result = yield* deleteSnapshot({ snapshotArn }); * // result.snapshot.status → "DELETING" * ``` * * @binding */ export interface DeleteClusterSnapshot extends Binding.Service Effect.Effect<(request: docdbelastic.DeleteClusterSnapshotInput) => Effect.Effect>> { } export declare const DeleteClusterSnapshot: DeleteClusterSnapshot; //# sourceMappingURL=DeleteClusterSnapshot.d.ts.map