commonMain.aws.sdk.kotlin.services.neptune.serde.DbClusterMemberDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-jvm Show documentation
Show all versions of neptune-jvm Show documentation
The AWS SDK for Kotlin client for Neptune
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptune.serde
import aws.sdk.kotlin.services.neptune.model.DbClusterMember
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parseBoolean
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 deserializeDbClusterMemberDocument(reader: XmlTagReader): DbClusterMember {
val builder = DbClusterMember.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// DBInstanceIdentifier com.amazonaws.neptune#DBClusterMember$DBInstanceIdentifier
"DBInstanceIdentifier" -> builder.dbInstanceIdentifier = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// IsClusterWriter com.amazonaws.neptune#DBClusterMember$IsClusterWriter
"IsClusterWriter" -> builder.isClusterWriter = curr.tryData()
.parseBoolean()
.getOrDeserializeErr { "expected (boolean: `com.amazonaws.neptune#Boolean`)" }
// DBClusterParameterGroupStatus com.amazonaws.neptune#DBClusterMember$DBClusterParameterGroupStatus
"DBClusterParameterGroupStatus" -> builder.dbClusterParameterGroupStatus = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// PromotionTier com.amazonaws.neptune#DBClusterMember$PromotionTier
"PromotionTier" -> builder.promotionTier = curr.tryData()
.parseInt()
.getOrDeserializeErr { "expected (integer: `com.amazonaws.neptune#IntegerOptional`)" }
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}