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:UpdateKxDataview` — advances a dataview of a kdb database in the bound environment to a new changeset (or new segment configurations) — how ingestion pipelines roll fresh data out to readers. * Provide the implementation with * `Effect.provide(AWS.FinSpace.UpdateKxDataviewHttp)`. * ### Managing Dataviews * **Example:** Advance a Dataview to a Changeset * ```typescript * const updateDataview = yield* AWS.FinSpace.UpdateKxDataview(kdb); * * yield* updateDataview({ * databaseName: "ticks", * dataviewName: "latest", * changesetId, * clientToken: crypto.randomUUID(), * }); * ``` * * @binding */ export interface UpdateKxDataview extends Binding.Service(environment: K) => Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const UpdateKxDataview: UpdateKxDataview; //# sourceMappingURL=UpdateKxDataview.d.ts.map