
commonMain.aws.sdk.kotlin.services.s3.serde.ReplicationConfigurationDocumentDeserializer.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.ReplicationConfiguration
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 deserializeReplicationConfigurationDocument(reader: XmlTagReader): ReplicationConfiguration {
val builder = ReplicationConfiguration.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Role com.amazonaws.s3#ReplicationConfiguration$Role
"Role" -> builder.role = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.s3#Role`)" }
// Rules com.amazonaws.s3#ReplicationConfiguration$Rules
"Rule" -> builder.rules = run {
val el = deserializeReplicationRuleDocument(curr)
createOrAppend(builder.rules, el)
}
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy