commonMain.aws.sdk.kotlin.services.cloudsearch.serde.ScalingParametersDocumentDeserializer.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.PartitionInstanceType
import aws.sdk.kotlin.services.cloudsearch.model.ScalingParameters
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parse
import aws.smithy.kotlin.runtime.serde.parseInt
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeScalingParametersDocument(reader: XmlTagReader): ScalingParameters {
val builder = ScalingParameters.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// DesiredInstanceType com.amazonaws.cloudsearch#ScalingParameters$DesiredInstanceType
"DesiredInstanceType" -> builder.desiredInstanceType = curr.tryData()
.parse { PartitionInstanceType.fromValue(it) }
.getOrDeserializeErr { "expected (enum: `com.amazonaws.cloudsearch#PartitionInstanceType`)" }
// DesiredReplicationCount com.amazonaws.cloudsearch#ScalingParameters$DesiredReplicationCount
"DesiredReplicationCount" -> builder.desiredReplicationCount = curr.tryData()
.parseInt()
.getOrDeserializeErr { "expected (integer: `com.amazonaws.cloudsearch#UIntValue`)" }
// DesiredPartitionCount com.amazonaws.cloudsearch#ScalingParameters$DesiredPartitionCount
"DesiredPartitionCount" -> builder.desiredPartitionCount = curr.tryData()
.parseInt()
.getOrDeserializeErr { "expected (integer: `com.amazonaws.cloudsearch#UIntValue`)" }
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy