updateLibraryItemMetadata
abstract suspend fun updateLibraryItemMetadata(input: UpdateLibraryItemMetadataRequest): UpdateLibraryItemMetadataResponse
Updates the verification status of a library item for an Amazon Q App.
Samples
fun main() {
//sampleStart
// Update a library item to be verified
qAppsClient.updateLibraryItemMetadata {
instanceId = "0b95c9c4-89cc-4aa8-9aae-aa91cbec699f"
libraryItemId = "cb9ecf72-8563-450d-9db9-994f98297316"
isVerified = true
}
//sampleEnd
}