All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.redshift.serde.ServiceIntegrationsUnionDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// 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")
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy