commonMain.aws.sdk.kotlin.services.codebuild.serde.S3LogsConfigDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codebuild-jvm Show documentation
Show all versions of codebuild-jvm Show documentation
The AWS SDK for Kotlin client for CodeBuild
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.codebuild.serde
import aws.sdk.kotlin.services.codebuild.model.BucketOwnerAccess
import aws.sdk.kotlin.services.codebuild.model.LogsConfigStatusType
import aws.sdk.kotlin.services.codebuild.model.S3LogsConfig
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 deserializeS3LogsConfigDocument(deserializer: Deserializer): S3LogsConfig {
val builder = S3LogsConfig.Builder()
val BUCKETOWNERACCESS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("bucketOwnerAccess"))
val ENCRYPTIONDISABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("encryptionDisabled"))
val LOCATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("location"))
val STATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("status"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(BUCKETOWNERACCESS_DESCRIPTOR)
field(ENCRYPTIONDISABLED_DESCRIPTOR)
field(LOCATION_DESCRIPTOR)
field(STATUS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
BUCKETOWNERACCESS_DESCRIPTOR.index -> builder.bucketOwnerAccess = deserializeString().let { BucketOwnerAccess.fromValue(it) }
ENCRYPTIONDISABLED_DESCRIPTOR.index -> builder.encryptionDisabled = deserializeBoolean()
LOCATION_DESCRIPTOR.index -> builder.location = deserializeString()
STATUS_DESCRIPTOR.index -> builder.status = deserializeString().let { LogsConfigStatusType.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}