commonMain.aws.sdk.kotlin.services.cloudsearch.serde.AnalysisSchemeStatusDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudsearch-jvm Show documentation
Show all versions of cloudsearch-jvm Show documentation
The AWS SDK for Kotlin client for CloudSearch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudsearch.serde
import aws.sdk.kotlin.services.cloudsearch.model.AnalysisSchemeStatus
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
internal fun deserializeAnalysisSchemeStatusDocument(reader: XmlTagReader): AnalysisSchemeStatus {
val builder = AnalysisSchemeStatus.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Options com.amazonaws.cloudsearch#AnalysisSchemeStatus$Options
"Options" -> builder.options = deserializeAnalysisSchemeDocument(curr)
// Status com.amazonaws.cloudsearch#AnalysisSchemeStatus$Status
"Status" -> builder.status = deserializeOptionStatusDocument(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy