commonMain.aws.sdk.kotlin.services.cloudwatchlogs.serde.RejectedLogEventsInfoDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatchlogs.serde
import aws.sdk.kotlin.services.cloudwatchlogs.model.RejectedLogEventsInfo
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 deserializeRejectedLogEventsInfoDocument(deserializer: Deserializer): RejectedLogEventsInfo {
val builder = RejectedLogEventsInfo.Builder()
val EXPIREDLOGEVENTENDINDEX_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("expiredLogEventEndIndex"))
val TOONEWLOGEVENTSTARTINDEX_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("tooNewLogEventStartIndex"))
val TOOOLDLOGEVENTENDINDEX_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("tooOldLogEventEndIndex"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(EXPIREDLOGEVENTENDINDEX_DESCRIPTOR)
field(TOONEWLOGEVENTSTARTINDEX_DESCRIPTOR)
field(TOOOLDLOGEVENTENDINDEX_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
EXPIREDLOGEVENTENDINDEX_DESCRIPTOR.index -> builder.expiredLogEventEndIndex = deserializeInt()
TOONEWLOGEVENTSTARTINDEX_DESCRIPTOR.index -> builder.tooNewLogEventStartIndex = deserializeInt()
TOOOLDLOGEVENTENDINDEX_DESCRIPTOR.index -> builder.tooOldLogEventEndIndex = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}