GetQAppSession
Source:
src/AWS/QApps/GetQAppSession.ts
Runtime binding for qapps:GetQAppSession.
Retrieves the current state of a Q App session — execution status plus the per-card status map. Provide the implementation with
Effect.provide(AWS.QApps.GetQAppSessionHttp).
Sessions
Section titled “Sessions”// init — bind the operation to the Q Appconst getQAppSession = yield* AWS.QApps.GetQAppSession(app);
// runtimeconst state = yield* getQAppSession({ sessionId });if (state.status === "COMPLETED") console.log(state.cardStatus);