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

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

There is a newer version: 1.3.99
Show 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.DocumentSuggesterOptions
import aws.sdk.kotlin.services.cloudsearch.model.SuggesterFuzzyMatching
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parse
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData

internal fun deserializeDocumentSuggesterOptionsDocument(reader: XmlTagReader): DocumentSuggesterOptions {
    val builder = DocumentSuggesterOptions.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // SourceField com.amazonaws.cloudsearch#DocumentSuggesterOptions$SourceField
            "SourceField" -> builder.sourceField = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudsearch#FieldName`)" }
            // FuzzyMatching com.amazonaws.cloudsearch#DocumentSuggesterOptions$FuzzyMatching
            "FuzzyMatching" -> builder.fuzzyMatching = curr.tryData()
                .parse { SuggesterFuzzyMatching.fromValue(it) }
                .getOrDeserializeErr { "expected (enum: `com.amazonaws.cloudsearch#SuggesterFuzzyMatching`)" }
            // SortExpression com.amazonaws.cloudsearch#DocumentSuggesterOptions$SortExpression
            "SortExpression" -> builder.sortExpression = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.cloudsearch#String`)" }
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy