All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.route53.serde.HealthCheckDocumentDeserializer.kt Maven / Gradle / Ivy

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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy