commonMain.aws.sdk.kotlin.services.autoscaling.serde.CapacityForecastDocumentDeserializer.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.CapacityForecast
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
internal fun deserializeCapacityForecastDocument(reader: XmlTagReader): CapacityForecast {
val builder = CapacityForecast.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Timestamps com.amazonaws.autoscaling#CapacityForecast$Timestamps
"Timestamps" -> builder.timestamps = deserializePredictiveScalingForecastTimestampsShape(curr)
// Values com.amazonaws.autoscaling#CapacityForecast$Values
"Values" -> builder.values = deserializePredictiveScalingForecastValuesShape(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}