getQAppSessionMetadata
abstract suspend fun getQAppSessionMetadata(input: GetQAppSessionMetadataRequest): GetQAppSessionMetadataResponse
Retrieves the current configuration of a Q App session.
Samples
fun main() {
//sampleStart
// Retrieves an existing session metadata for an Amazon Q App
val resp = qAppsClient.getQAppSessionMetadata {
instanceId = "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f"
sessionId = "56ae47c3-10bc-4c2c-8b27-9b9fe23b3edb"
}
//sampleEnd
}