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

commonMain.aws.sdk.kotlin.services.cloudsearch.serde.IndexFieldStatusDocumentDeserializer.kt Maven / Gradle / Ivy

The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.cloudsearch.serde

import aws.sdk.kotlin.services.cloudsearch.model.IndexFieldStatus
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader

internal fun deserializeIndexFieldStatusDocument(reader: XmlTagReader): IndexFieldStatus {
    val builder = IndexFieldStatus.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // Options com.amazonaws.cloudsearch#IndexFieldStatus$Options
            "Options" -> builder.options = deserializeIndexFieldDocument(curr)
            // Status com.amazonaws.cloudsearch#IndexFieldStatus$Status
            "Status" -> builder.status = deserializeOptionStatusDocument(curr)
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy