Skip to content

ExportQAppSessionData

Source: src/AWS/QApps/ExportQAppSessionData.ts

Runtime binding for qapps:ExportQAppSessionData.

Exports a shared Q App session’s collected data as a downloadable CSV file link. Provide the implementation with Effect.provide(AWS.QApps.ExportQAppSessionDataHttp).

// init — bind the operation to the Q App
const exportQAppSessionData = yield* AWS.QApps.ExportQAppSessionData(app);
// runtime
const exported = yield* exportQAppSessionData({ sessionId });
console.log(exported.csvFileLink);