commonMain.aws.sdk.kotlin.services.amplifybackend.serde.CreateBackendAuthResourceConfigDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amplifybackend-jvm Show documentation
Show all versions of amplifybackend-jvm Show documentation
The AWS SDK for Kotlin client for AmplifyBackend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.amplifybackend.serde
import aws.sdk.kotlin.services.amplifybackend.model.AuthResources
import aws.sdk.kotlin.services.amplifybackend.model.CreateBackendAuthResourceConfig
import aws.sdk.kotlin.services.amplifybackend.model.Service
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 deserializeCreateBackendAuthResourceConfigDocument(deserializer: Deserializer): CreateBackendAuthResourceConfig {
val builder = CreateBackendAuthResourceConfig.Builder()
val AUTHRESOURCES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("authResources"))
val IDENTITYPOOLCONFIGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("identityPoolConfigs"))
val SERVICE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("service"))
val USERPOOLCONFIGS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("userPoolConfigs"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AUTHRESOURCES_DESCRIPTOR)
field(IDENTITYPOOLCONFIGS_DESCRIPTOR)
field(SERVICE_DESCRIPTOR)
field(USERPOOLCONFIGS_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AUTHRESOURCES_DESCRIPTOR.index -> builder.authResources = deserializeString().let { AuthResources.fromValue(it) }
IDENTITYPOOLCONFIGS_DESCRIPTOR.index -> builder.identityPoolConfigs = deserializeCreateBackendAuthIdentityPoolConfigDocument(deserializer)
SERVICE_DESCRIPTOR.index -> builder.service = deserializeString().let { Service.fromValue(it) }
USERPOOLCONFIGS_DESCRIPTOR.index -> builder.userPoolConfigs = deserializeCreateBackendAuthUserPoolConfigDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}