commonMain.aws.sdk.kotlin.services.finspace.serde.KxUserDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of finspace-jvm Show documentation
Show all versions of finspace-jvm Show documentation
The AWS SDK for Kotlin client for finspace
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.finspace.serde
import aws.sdk.kotlin.services.finspace.model.KxUser
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
import aws.smithy.kotlin.runtime.time.Instant
internal fun deserializeKxUserDocument(deserializer: Deserializer): KxUser {
val builder = KxUser.Builder()
val CREATETIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("createTimestamp"))
val IAMROLE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("iamRole"))
val UPDATETIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("updateTimestamp"))
val USERARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("userArn"))
val USERNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("userName"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CREATETIMESTAMP_DESCRIPTOR)
field(IAMROLE_DESCRIPTOR)
field(UPDATETIMESTAMP_DESCRIPTOR)
field(USERARN_DESCRIPTOR)
field(USERNAME_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CREATETIMESTAMP_DESCRIPTOR.index -> builder.createTimestamp = deserializeString().let { Instant.fromEpochSeconds(it) }
IAMROLE_DESCRIPTOR.index -> builder.iamRole = deserializeString()
UPDATETIMESTAMP_DESCRIPTOR.index -> builder.updateTimestamp = deserializeString().let { Instant.fromEpochSeconds(it) }
USERARN_DESCRIPTOR.index -> builder.userArn = deserializeString()
USERNAME_DESCRIPTOR.index -> builder.userName = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy