commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.serde.EventDestinationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.serde
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventType
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 kotlin.collections.mutableListOf
internal fun deserializeEventDestinationDocument(deserializer: Deserializer): EventDestination {
val builder = EventDestination.Builder()
val CLOUDWATCHLOGSDESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("CloudWatchLogsDestination"))
val ENABLED_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("Enabled"))
val EVENTDESTINATIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("EventDestinationName"))
val KINESISFIREHOSEDESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("KinesisFirehoseDestination"))
val MATCHINGEVENTTYPES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("MatchingEventTypes"))
val SNSDESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SnsDestination"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CLOUDWATCHLOGSDESTINATION_DESCRIPTOR)
field(ENABLED_DESCRIPTOR)
field(EVENTDESTINATIONNAME_DESCRIPTOR)
field(KINESISFIREHOSEDESTINATION_DESCRIPTOR)
field(MATCHINGEVENTTYPES_DESCRIPTOR)
field(SNSDESTINATION_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CLOUDWATCHLOGSDESTINATION_DESCRIPTOR.index -> builder.cloudWatchLogsDestination = deserializeCloudWatchLogsDestinationDocument(deserializer)
ENABLED_DESCRIPTOR.index -> builder.enabled = deserializeBoolean()
EVENTDESTINATIONNAME_DESCRIPTOR.index -> builder.eventDestinationName = deserializeString()
KINESISFIREHOSEDESTINATION_DESCRIPTOR.index -> builder.kinesisFirehoseDestination = deserializeKinesisFirehoseDestinationDocument(deserializer)
MATCHINGEVENTTYPES_DESCRIPTOR.index -> builder.matchingEventTypes =
deserializer.deserializeList(MATCHINGEVENTTYPES_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeString().let { EventType.fromValue(it) } } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
SNSDESTINATION_DESCRIPTOR.index -> builder.snsDestination = deserializeSnsDestinationDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}