commonMain.aws.sdk.kotlin.services.route53.serde.HealthCheckDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53-jvm Show documentation
Show all versions of route53-jvm Show documentation
The AWS SDK for Kotlin client for Route 53
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.serde
import aws.sdk.kotlin.services.route53.model.HealthCheck
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parseLong
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeHealthCheckDocument(reader: XmlTagReader): HealthCheck {
val builder = HealthCheck.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Id com.amazonaws.route53#HealthCheck$Id
"Id" -> builder.id = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.route53#HealthCheckId`)" }
// CallerReference com.amazonaws.route53#HealthCheck$CallerReference
"CallerReference" -> builder.callerReference = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.route53#HealthCheckNonce`)" }
// LinkedService com.amazonaws.route53#HealthCheck$LinkedService
"LinkedService" -> builder.linkedService = deserializeLinkedServiceDocument(curr)
// HealthCheckConfig com.amazonaws.route53#HealthCheck$HealthCheckConfig
"HealthCheckConfig" -> builder.healthCheckConfig = deserializeHealthCheckConfigDocument(curr)
// HealthCheckVersion com.amazonaws.route53#HealthCheck$HealthCheckVersion
"HealthCheckVersion" -> builder.healthCheckVersion = curr.tryData()
.parseLong()
.getOrDeserializeErr { "expected (long: `com.amazonaws.route53#HealthCheckVersion`)" }
// CloudWatchAlarmConfiguration com.amazonaws.route53#HealthCheck$CloudWatchAlarmConfiguration
"CloudWatchAlarmConfiguration" -> builder.cloudWatchAlarmConfiguration = deserializeCloudWatchAlarmConfigurationDocument(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}