commonMain.aws.sdk.kotlin.services.firehose.serde.DeliveryStreamDescriptionDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.serde
import aws.sdk.kotlin.services.firehose.model.DeliveryStreamDescription
import aws.sdk.kotlin.services.firehose.model.DeliveryStreamStatus
import aws.sdk.kotlin.services.firehose.model.DeliveryStreamType
import aws.sdk.kotlin.services.firehose.model.DestinationDescription
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 deserializeDeliveryStreamDescriptionDocument(deserializer: Deserializer): DeliveryStreamDescription {
val builder = DeliveryStreamDescription.Builder()
val CREATETIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("CreateTimestamp"))
val DELIVERYSTREAMARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DeliveryStreamARN"))
val DELIVERYSTREAMENCRYPTIONCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("DeliveryStreamEncryptionConfiguration"))
val DELIVERYSTREAMNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DeliveryStreamName"))
val DELIVERYSTREAMSTATUS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("DeliveryStreamStatus"))
val DELIVERYSTREAMTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("DeliveryStreamType"))
val DESTINATIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Destinations"))
val FAILUREDESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("FailureDescription"))
val HASMOREDESTINATIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Boolean, JsonSerialName("HasMoreDestinations"))
val LASTUPDATETIMESTAMP_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastUpdateTimestamp"))
val SOURCE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Source"))
val VERSIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("VersionId"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CREATETIMESTAMP_DESCRIPTOR)
field(DELIVERYSTREAMARN_DESCRIPTOR)
field(DELIVERYSTREAMENCRYPTIONCONFIGURATION_DESCRIPTOR)
field(DELIVERYSTREAMNAME_DESCRIPTOR)
field(DELIVERYSTREAMSTATUS_DESCRIPTOR)
field(DELIVERYSTREAMTYPE_DESCRIPTOR)
field(DESTINATIONS_DESCRIPTOR)
field(FAILUREDESCRIPTION_DESCRIPTOR)
field(HASMOREDESTINATIONS_DESCRIPTOR)
field(LASTUPDATETIMESTAMP_DESCRIPTOR)
field(SOURCE_DESCRIPTOR)
field(VERSIONID_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CREATETIMESTAMP_DESCRIPTOR.index -> builder.createTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
DELIVERYSTREAMARN_DESCRIPTOR.index -> builder.deliveryStreamArn = deserializeString()
DELIVERYSTREAMENCRYPTIONCONFIGURATION_DESCRIPTOR.index -> builder.deliveryStreamEncryptionConfiguration = deserializeDeliveryStreamEncryptionConfigurationDocument(deserializer)
DELIVERYSTREAMNAME_DESCRIPTOR.index -> builder.deliveryStreamName = deserializeString()
DELIVERYSTREAMSTATUS_DESCRIPTOR.index -> builder.deliveryStreamStatus = deserializeString().let { DeliveryStreamStatus.fromValue(it) }
DELIVERYSTREAMTYPE_DESCRIPTOR.index -> builder.deliveryStreamType = deserializeString().let { DeliveryStreamType.fromValue(it) }
DESTINATIONS_DESCRIPTOR.index -> builder.destinations =
deserializer.deserializeList(DESTINATIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeDestinationDescriptionDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
FAILUREDESCRIPTION_DESCRIPTOR.index -> builder.failureDescription = deserializeFailureDescriptionDocument(deserializer)
HASMOREDESTINATIONS_DESCRIPTOR.index -> builder.hasMoreDestinations = deserializeBoolean()
LASTUPDATETIMESTAMP_DESCRIPTOR.index -> builder.lastUpdateTimestamp = deserializeInstant(TimestampFormat.EPOCH_SECONDS)
SOURCE_DESCRIPTOR.index -> builder.source = deserializeSourceDescriptionDocument(deserializer)
VERSIONID_DESCRIPTOR.index -> builder.versionId = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}