Skip to content

UpdateQAppSession

Source: src/AWS/QApps/UpdateQAppSession.ts

Runtime binding for qapps:UpdateQAppSession.

Submits new card values into a running Q App session (e.g. answers a text-input card). Provide the implementation with Effect.provide(AWS.QApps.UpdateQAppSessionHttp).

// init — bind the operation to the Q App
const updateQAppSession = yield* AWS.QApps.UpdateQAppSession(app);
// runtime
yield* updateQAppSession({
sessionId,
values: [{ cardId, value: "Hello, Q Apps!" }],
});