commonMain.aws.sdk.kotlin.services.configservice.serde.ConfigExportDeliveryInfoDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of configservice-jvm Show documentation
Show all versions of configservice-jvm Show documentation
The AWS SDK for Kotlin client for Config Service
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.configservice.serde
import aws.sdk.kotlin.services.configservice.model.ConfigExportDeliveryInfo
import aws.sdk.kotlin.services.configservice.model.DeliveryStatus
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
import aws.smithy.kotlin.runtime.time.TimestampFormat
internal fun deserializeConfigExportDeliveryInfoDocument(deserializer: Deserializer): ConfigExportDeliveryInfo {
val builder = ConfigExportDeliveryInfo.Builder()
val LASTATTEMPTTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("lastAttemptTime"))
val LASTERRORCODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("lastErrorCode"))
val LASTERRORMESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("lastErrorMessage"))
val LASTSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("lastStatus"))
val LASTSUCCESSFULTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("lastSuccessfulTime"))
val NEXTDELIVERYTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("nextDeliveryTime"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(LASTATTEMPTTIME_DESCRIPTOR)
field(LASTERRORCODE_DESCRIPTOR)
field(LASTERRORMESSAGE_DESCRIPTOR)
field(LASTSTATUS_DESCRIPTOR)
field(LASTSUCCESSFULTIME_DESCRIPTOR)
field(NEXTDELIVERYTIME_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
LASTATTEMPTTIME_DESCRIPTOR.index -> builder.lastAttemptTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
LASTERRORCODE_DESCRIPTOR.index -> builder.lastErrorCode = deserializeString()
LASTERRORMESSAGE_DESCRIPTOR.index -> builder.lastErrorMessage = deserializeString()
LASTSTATUS_DESCRIPTOR.index -> builder.lastStatus = deserializeString().let { DeliveryStatus.fromValue(it) }
LASTSUCCESSFULTIME_DESCRIPTOR.index -> builder.lastSuccessfulTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
NEXTDELIVERYTIME_DESCRIPTOR.index -> builder.nextDeliveryTime = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}