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

commonMain.aws.sdk.kotlin.services.bedrockagent.serde.OutputFlowNodeConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.bedrockagent.serde

import aws.sdk.kotlin.services.bedrockagent.model.OutputFlowNodeConfiguration
import aws.smithy.kotlin.runtime.serde.Deserializer
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.deserializeStruct

internal fun deserializeOutputFlowNodeConfigurationDocument(deserializer: Deserializer): OutputFlowNodeConfiguration {
    val builder = OutputFlowNodeConfiguration.Builder()
    deserializer.deserializeStruct(SdkObjectDescriptor.build {}) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy