commonMain.aws.sdk.kotlin.services.route53.serde.HostedZoneDocumentDeserializer.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
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.serde
import aws.sdk.kotlin.services.route53.model.HostedZone
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 deserializeHostedZoneDocument(reader: XmlTagReader): HostedZone {
val builder = HostedZone.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Id com.amazonaws.route53#HostedZone$Id
"Id" -> builder.id = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.route53#ResourceId`)" }
// Name com.amazonaws.route53#HostedZone$Name
"Name" -> builder.name = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.route53#DNSName`)" }
// CallerReference com.amazonaws.route53#HostedZone$CallerReference
"CallerReference" -> builder.callerReference = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.route53#Nonce`)" }
// Config com.amazonaws.route53#HostedZone$Config
"Config" -> builder.config = deserializeHostedZoneConfigDocument(curr)
// ResourceRecordSetCount com.amazonaws.route53#HostedZone$ResourceRecordSetCount
"ResourceRecordSetCount" -> builder.resourceRecordSetCount = curr.tryData()
.parseLong()
.getOrDeserializeErr { "expected (long: `com.amazonaws.route53#HostedZoneRRSetCount`)" }
// LinkedService com.amazonaws.route53#HostedZone$LinkedService
"LinkedService" -> builder.linkedService = deserializeLinkedServiceDocument(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}