StartQAppSession
Source:
src/AWS/QApps/StartQAppSession.ts
Runtime binding for qapps:StartQAppSession.
Starts a new session of the bound Q App, optionally seeding initial card values. Provide the implementation with
Effect.provide(AWS.QApps.StartQAppSessionHttp).
Sessions
Section titled “Sessions”// init — bind the operation to the Q Appconst startQAppSession = yield* AWS.QApps.StartQAppSession(app);
// runtimeconst session = yield* startQAppSession({ appVersion: 1 });console.log(session.sessionId);