commonMain.aws.sdk.kotlin.services.glacier.serde.CsvOutputDocumentSerializer.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.CsvOutput
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 serializeCsvOutputDocument(serializer: Serializer, input: CsvOutput) {
val FIELDDELIMITER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("FieldDelimiter"))
val QUOTECHARACTER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QuoteCharacter"))
val QUOTEESCAPECHARACTER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("QuoteEscapeCharacter"))
val QUOTEFIELDS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("QuoteFields"))
val RECORDDELIMITER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RecordDelimiter"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(FIELDDELIMITER_DESCRIPTOR)
field(QUOTECHARACTER_DESCRIPTOR)
field(QUOTEESCAPECHARACTER_DESCRIPTOR)
field(QUOTEFIELDS_DESCRIPTOR)
field(RECORDDELIMITER_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.quoteFields?.let { field(QUOTEFIELDS_DESCRIPTOR, it.value) }
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