commonMain.aws.sdk.kotlin.services.autoscaling.serde.CustomizedMetricSpecificationDocumentDeserializer.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.CustomizedMetricSpecification
import aws.sdk.kotlin.services.autoscaling.model.MetricStatistic
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 deserializeCustomizedMetricSpecificationDocument(reader: XmlTagReader): CustomizedMetricSpecification {
val builder = CustomizedMetricSpecification.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// MetricName com.amazonaws.autoscaling#CustomizedMetricSpecification$MetricName
"MetricName" -> builder.metricName = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#MetricName`)" }
// Namespace com.amazonaws.autoscaling#CustomizedMetricSpecification$Namespace
"Namespace" -> builder.namespace = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#MetricNamespace`)" }
// Dimensions com.amazonaws.autoscaling#CustomizedMetricSpecification$Dimensions
"Dimensions" -> builder.dimensions = deserializeMetricDimensionsShape(curr)
// Statistic com.amazonaws.autoscaling#CustomizedMetricSpecification$Statistic
"Statistic" -> builder.statistic = curr.tryData()
.parse { MetricStatistic.fromValue(it) }
.getOrDeserializeErr { "expected (enum: `com.amazonaws.autoscaling#MetricStatistic`)" }
// Unit com.amazonaws.autoscaling#CustomizedMetricSpecification$Unit
"Unit" -> builder.unit = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.autoscaling#MetricUnit`)" }
// Metrics com.amazonaws.autoscaling#CustomizedMetricSpecification$Metrics
"Metrics" -> builder.metrics = deserializeTargetTrackingMetricDataQueriesShape(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}