commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.serde.ConfigurationSetInformationDocumentDeserializer.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.ConfigurationSetInformation
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventDestination
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.MessageType
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
import kotlin.collections.mutableListOf
internal fun deserializeConfigurationSetInformationDocument(deserializer: Deserializer): ConfigurationSetInformation {
val builder = ConfigurationSetInformation.Builder()
val CONFIGURATIONSETARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConfigurationSetArn"))
val CONFIGURATIONSETNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConfigurationSetName"))
val CREATEDTIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreatedTimestamp"))
val DEFAULTMESSAGETYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DefaultMessageType"))
val DEFAULTSENDERID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DefaultSenderId"))
val EVENTDESTINATIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("EventDestinations"))
val PROTECTCONFIGURATIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ProtectConfigurationId"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CONFIGURATIONSETARN_DESCRIPTOR)
field(CONFIGURATIONSETNAME_DESCRIPTOR)
field(CREATEDTIMESTAMP_DESCRIPTOR)
field(DEFAULTMESSAGETYPE_DESCRIPTOR)
field(DEFAULTSENDERID_DESCRIPTOR)
field(EVENTDESTINATIONS_DESCRIPTOR)
field(PROTECTCONFIGURATIONID_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CONFIGURATIONSETARN_DESCRIPTOR.index -> builder.configurationSetArn = deserializeString()
CONFIGURATIONSETNAME_DESCRIPTOR.index -> builder.configurationSetName = deserializeString()
CREATEDTIMESTAMP_DESCRIPTOR.index -> builder.createdTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
DEFAULTMESSAGETYPE_DESCRIPTOR.index -> builder.defaultMessageType = deserializeString().let { MessageType.fromValue(it) }
DEFAULTSENDERID_DESCRIPTOR.index -> builder.defaultSenderId = deserializeString()
EVENTDESTINATIONS_DESCRIPTOR.index -> builder.eventDestinations =
deserializer.deserializeList(EVENTDESTINATIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeEventDestinationDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
PROTECTCONFIGURATIONID_DESCRIPTOR.index -> builder.protectConfigurationId = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}