commonMain.aws.sdk.kotlin.services.glacier.serde.CsvInputDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glacier-jvm Show documentation
Show all versions of glacier-jvm Show documentation
The AWS Kotlin client for Glacier
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glacier.serde
import aws.sdk.kotlin.services.glacier.model.CsvInput
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
internal fun serializeCsvInputDocument(serializer: Serializer, input: CsvInput) {
val COMMENTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Comments"))
val FIELDDELIMITER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("FieldDelimiter"))
val FILEHEADERINFO_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("FileHeaderInfo"))
val QUOTECHARACTER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QuoteCharacter"))
val QUOTEESCAPECHARACTER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QuoteEscapeCharacter"))
val RECORDDELIMITER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RecordDelimiter"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(COMMENTS_DESCRIPTOR)
field(FIELDDELIMITER_DESCRIPTOR)
field(FILEHEADERINFO_DESCRIPTOR)
field(QUOTECHARACTER_DESCRIPTOR)
field(QUOTEESCAPECHARACTER_DESCRIPTOR)
field(RECORDDELIMITER_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.fileHeaderInfo?.let { field(FILEHEADERINFO_DESCRIPTOR, it.value) }
input.comments?.let { field(COMMENTS_DESCRIPTOR, it) }
input.quoteEscapeCharacter?.let { field(QUOTEESCAPECHARACTER_DESCRIPTOR, it) }
input.recordDelimiter?.let { field(RECORDDELIMITER_DESCRIPTOR, it) }
input.fieldDelimiter?.let { field(FIELDDELIMITER_DESCRIPTOR, it) }
input.quoteCharacter?.let { field(QUOTECHARACTER_DESCRIPTOR, it) }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy