commonMain.aws.sdk.kotlin.services.autoscaling.serde.EnabledMetricDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autoscaling-jvm Show documentation
Show all versions of autoscaling-jvm Show documentation
The AWS SDK for Kotlin client for Auto Scaling
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.autoscaling.serde
import aws.sdk.kotlin.services.autoscaling.model.EnabledMetric
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeEnabledMetricDocument(reader: XmlTagReader): EnabledMetric {
val builder = EnabledMetric.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Metric com.amazonaws.autoscaling#EnabledMetric$Metric
"Metric" -> builder.metric = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#XmlStringMaxLen255`)" }
// Granularity com.amazonaws.autoscaling#EnabledMetric$Granularity
"Granularity" -> builder.granularity = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#XmlStringMaxLen255`)" }
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}