import type * as SVC from "@distilled.cloud/aws/finspace"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { KxEnvironment } from "./KxEnvironment.ts"; /** * Runtime binding for `finspace:DeleteKxVolume` — deletes a volume from the bound environment. The volume must not be attached to any cluster. * Provide the implementation with * `Effect.provide(AWS.FinSpace.DeleteKxVolumeHttp)`. * ### Managing Volumes * **Example:** Delete a Volume * ```typescript * const deleteVolume = yield* AWS.FinSpace.DeleteKxVolume(kdb); * * yield* deleteVolume({ * volumeName: "tp-logs", * clientToken: crypto.randomUUID(), * }); * ``` * * @binding */ export interface DeleteKxVolume extends Binding.Service(environment: K) => Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const DeleteKxVolume: DeleteKxVolume; //# sourceMappingURL=DeleteKxVolume.d.ts.map