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

commonMain.aws.sdk.kotlin.services.route53.serde.TrafficPolicyDocumentDeserializer.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.RrType
import aws.sdk.kotlin.services.route53.model.TrafficPolicy
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parse
import aws.smithy.kotlin.runtime.serde.parseInt
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData

internal fun deserializeTrafficPolicyDocument(reader: XmlTagReader): TrafficPolicy {
    val builder = TrafficPolicy.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // Id com.amazonaws.route53#TrafficPolicy$Id
            "Id" -> builder.id = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#TrafficPolicyId`)" }
            // Version com.amazonaws.route53#TrafficPolicy$Version
            "Version" -> builder.version = curr.tryData()
                .parseInt()
                .getOrDeserializeErr { "expected (integer: `com.amazonaws.route53#TrafficPolicyVersion`)" }
            // Name com.amazonaws.route53#TrafficPolicy$Name
            "Name" -> builder.name = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#TrafficPolicyName`)" }
            // Type com.amazonaws.route53#TrafficPolicy$Type
            "Type" -> builder.type = curr.tryData()
                .parse { RrType.fromValue(it) }
                .getOrDeserializeErr { "expected (enum: `com.amazonaws.route53#RRType`)" }
            // Document com.amazonaws.route53#TrafficPolicy$Document
            "Document" -> builder.document = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#TrafficPolicyDocument`)" }
            // Comment com.amazonaws.route53#TrafficPolicy$Comment
            "Comment" -> builder.comment = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.route53#TrafficPolicyComment`)" }
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy