commonMain.aws.sdk.kotlin.services.redshift.serde.LakeFormationScopeUnionDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.serde
import aws.sdk.kotlin.services.redshift.model.LakeFormationScopeUnion
import aws.smithy.kotlin.runtime.serde.DeserializationException
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
internal fun deserializeLakeFormationScopeUnionDocument(reader: XmlTagReader): LakeFormationScopeUnion {
var value: LakeFormationScopeUnion? = null
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// LakeFormationQuery com.amazonaws.redshift#LakeFormationScopeUnion$LakeFormationQuery
"LakeFormationQuery" -> value = LakeFormationScopeUnion.LakeFormationQuery(
deserializeLakeFormationQueryDocument(curr)
)
else -> {}
}
curr.drop()
}
return value ?: throw DeserializationException("Deserialized union value unexpectedly null: LakeFormationScopeUnion")
}