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

commonMain.aws.sdk.kotlin.services.s3.serde.ConditionDocumentDeserializer.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.Condition
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 deserializeConditionDocument(reader: XmlTagReader): Condition {
    val builder = Condition.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // HttpErrorCodeReturnedEquals com.amazonaws.s3#Condition$HttpErrorCodeReturnedEquals
            "HttpErrorCodeReturnedEquals" -> builder.httpErrorCodeReturnedEquals = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.s3#HttpErrorCodeReturnedEquals`)" }
            // KeyPrefixEquals com.amazonaws.s3#Condition$KeyPrefixEquals
            "KeyPrefixEquals" -> builder.keyPrefixEquals = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.s3#KeyPrefixEquals`)" }
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy