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:UpdateKxVolume` — changes a volume's description or NAS_1 size/throughput in the bound environment. * Provide the implementation with * `Effect.provide(AWS.FinSpace.UpdateKxVolumeHttp)`. * ### Managing Volumes * **Example:** Grow a Volume * ```typescript * const updateVolume = yield* AWS.FinSpace.UpdateKxVolume(kdb); * * yield* updateVolume({ * volumeName: "tp-logs", * nas1Configuration: { type: "SSD_250", size: 2400 }, * clientToken: crypto.randomUUID(), * }); * ``` * * @binding */ export interface UpdateKxVolume extends Binding.Service(environment: K) => Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const UpdateKxVolume: UpdateKxVolume; //# sourceMappingURL=UpdateKxVolume.d.ts.map