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

commonMain.aws.sdk.kotlin.services.pipes.serde.S3LogDestinationDocumentDeserializer.kt Maven / Gradle / Ivy

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

package aws.sdk.kotlin.services.pipes.serde

import aws.sdk.kotlin.services.pipes.model.S3LogDestination
import aws.sdk.kotlin.services.pipes.model.S3OutputFormat
import aws.smithy.kotlin.runtime.serde.Deserializer
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct

internal fun deserializeS3LogDestinationDocument(deserializer: Deserializer): S3LogDestination {
    val builder = S3LogDestination.Builder()
    val BUCKETNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BucketName"))
    val BUCKETOWNER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BucketOwner"))
    val OUTPUTFORMAT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OutputFormat"))
    val PREFIX_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Prefix"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(BUCKETNAME_DESCRIPTOR)
        field(BUCKETOWNER_DESCRIPTOR)
        field(OUTPUTFORMAT_DESCRIPTOR)
        field(PREFIX_DESCRIPTOR)
    }

    deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
        loop@while (true) {
            when (findNextFieldIndex()) {
                BUCKETNAME_DESCRIPTOR.index -> builder.bucketName = deserializeString()
                BUCKETOWNER_DESCRIPTOR.index -> builder.bucketOwner = deserializeString()
                OUTPUTFORMAT_DESCRIPTOR.index -> builder.outputFormat = deserializeString().let { S3OutputFormat.fromValue(it) }
                PREFIX_DESCRIPTOR.index -> builder.prefix = deserializeString()
                null -> break@loop
                else -> skipValue()
            }
        }
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy