import type * as qapps from "@distilled.cloud/aws/qapps"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { QApp } from "./QApp.ts"; /** * Request for {@link AssociateQAppWithUser} — `instanceId` and `appId` are injected from the bound Q App. */ export interface AssociateQAppWithUserRequest extends Omit { } /** * Runtime binding for `qapps:AssociateQAppWithUser`. * * Links the calling identity to the bound Q App, marking it as a favorite in the user's inventory. Provide the implementation with * `Effect.provide(AWS.QApps.AssociateQAppWithUserHttp)`. * ### User Inventory * **Example:** Favorite the App * ```typescript * // init — bind the operation to the Q App * const associateQAppWithUser = yield* AWS.QApps.AssociateQAppWithUser(app); * * // runtime * yield* associateQAppWithUser(); * ``` * * @binding */ export interface AssociateQAppWithUser extends Binding.Service Effect.Effect<(request?: AssociateQAppWithUserRequest) => Effect.Effect>> { } export declare const AssociateQAppWithUser: AssociateQAppWithUser; //# sourceMappingURL=AssociateQAppWithUser.d.ts.map