commonMain.aws.sdk.kotlin.services.redshift.serde.ServiceIntegrationsUnionDocumentDeserializer.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.ServiceIntegrationsUnion
import aws.smithy.kotlin.runtime.serde.DeserializationException
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
internal fun deserializeServiceIntegrationsUnionDocument(reader: XmlTagReader): ServiceIntegrationsUnion {
var value: ServiceIntegrationsUnion? = null
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// LakeFormation com.amazonaws.redshift#ServiceIntegrationsUnion$LakeFormation
"LakeFormation" -> value = ServiceIntegrationsUnion.LakeFormation(
deserializeLakeFormationServiceIntegrationsShape(curr)
)
else -> {}
}
curr.drop()
}
return value ?: throw DeserializationException("Deserialized union value unexpectedly null: ServiceIntegrationsUnion")
}