
commonMain.aws.sdk.kotlin.services.s3.serde.ReplicationRuleAndOperatorDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.s3.serde
import aws.sdk.kotlin.services.s3.model.ReplicationRuleAndOperator
import aws.smithy.kotlin.runtime.collections.createOrAppend
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeReplicationRuleAndOperatorDocument(reader: XmlTagReader): ReplicationRuleAndOperator {
val builder = ReplicationRuleAndOperator.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Prefix com.amazonaws.s3#ReplicationRuleAndOperator$Prefix
"Prefix" -> builder.prefix = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.s3#Prefix`)" }
// Tags com.amazonaws.s3#ReplicationRuleAndOperator$Tags
"Tag" -> builder.tags = run {
val el = deserializeTagDocument(curr)
createOrAppend(builder.tags, el)
}
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy