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:CreateKxUser` — creates a kdb user in the bound environment, mapping an IAM role to a kdb identity. * Provide the implementation with * `Effect.provide(AWS.FinSpace.CreateKxUserHttp)`. * ### Managing kdb Users * **Example:** Create a User * ```typescript * const createUser = yield* AWS.FinSpace.CreateKxUser(kdb); * * const user = yield* createUser({ * userName: "analyst", * iamRole: roleArn, * }); * ``` * * @binding */ export interface CreateKxUser extends Binding.Service(environment: K) => Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const CreateKxUser: CreateKxUser; //# sourceMappingURL=CreateKxUser.d.ts.map