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

commonMain.aws.sdk.kotlin.services.s3.serde.ServerSideEncryptionConfigurationDocumentDeserializer.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.ServerSideEncryptionConfiguration
import aws.smithy.kotlin.runtime.collections.createOrAppend
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader

internal fun deserializeServerSideEncryptionConfigurationDocument(reader: XmlTagReader): ServerSideEncryptionConfiguration {
    val builder = ServerSideEncryptionConfiguration.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // Rules com.amazonaws.s3#ServerSideEncryptionConfiguration$Rules
            "Rule" -> builder.rules = run {
                val el = deserializeServerSideEncryptionRuleDocument(curr)
                createOrAppend(builder.rules, el)
            }
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy