commonMain.aws.sdk.kotlin.services.glue.serde.PartitionInputDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.serde
import aws.sdk.kotlin.services.glue.model.PartitionInput
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.Serializer
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.TimestampFormat
internal fun serializePartitionInputDocument(serializer: Serializer, input: PartitionInput) {
val LASTACCESSTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastAccessTime"))
val LASTANALYZEDTIME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Timestamp, JsonSerialName("LastAnalyzedTime"))
val PARAMETERS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("Parameters"))
val STORAGEDESCRIPTOR_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("StorageDescriptor"))
val VALUES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("Values"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(LASTACCESSTIME_DESCRIPTOR)
field(LASTANALYZEDTIME_DESCRIPTOR)
field(PARAMETERS_DESCRIPTOR)
field(STORAGEDESCRIPTOR_DESCRIPTOR)
field(VALUES_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
if (input.values != null) {
listField(VALUES_DESCRIPTOR) {
for (el0 in input.values) {
serializeString(el0)
}
}
}
input.lastAccessTime?.let { field(LASTACCESSTIME_DESCRIPTOR, it, TimestampFormat.EPOCH_SECONDS) }
input.storageDescriptor?.let { field(STORAGEDESCRIPTOR_DESCRIPTOR, it, ::serializeStorageDescriptorDocument) }
if (input.parameters != null) {
mapField(PARAMETERS_DESCRIPTOR) {
input.parameters.forEach { (key, value) ->
entry(key, value)
}
}
}
input.lastAnalyzedTime?.let { field(LASTANALYZEDTIME_DESCRIPTOR, it, TimestampFormat.EPOCH_SECONDS) }
}
}