Skip to content

UpdateQAppSessionMetadata

Source: src/AWS/QApps/UpdateQAppSessionMetadata.ts

Runtime binding for qapps:UpdateQAppSessionMetadata.

Updates a Q App session’s metadata — rename it or reconfigure how it is shared with collaborators. Provide the implementation with Effect.provide(AWS.QApps.UpdateQAppSessionMetadataHttp).

// init — bind the operation to the Q App
const updateQAppSessionMetadata = yield* AWS.QApps.UpdateQAppSessionMetadata(app);
// runtime
yield* updateQAppSessionMetadata({
sessionId,
sharingConfiguration: { enabled: true, acceptResponses: true },
});