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:ListKxUsers` — lists the kdb users of the bound environment. * Provide the implementation with * `Effect.provide(AWS.FinSpace.ListKxUsersHttp)`. * ### Managing kdb Users * **Example:** List Users * ```typescript * const listUsers = yield* AWS.FinSpace.ListKxUsers(kdb); * * const { users } = yield* listUsers(); * ``` * * @binding */ export interface ListKxUsers extends Binding.Service< ListKxUsers, "AWS.FinSpace.ListKxUsers", ( environment: K, ) => Effect.Effect< ( request?: Omit, ) => Effect.Effect > > {} export const ListKxUsers = Binding.Service( "AWS.FinSpace.ListKxUsers", );