
commonMain.aws.sdk.kotlin.services.autoscaling.serde.CapacityForecastDocumentDeserializer.kt Maven / Gradle / Ivy
// 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()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy