commonMain.aws.sdk.kotlin.services.glue.serde.SparkConnectorSourceDocumentSerializer.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.SparkConnectorSource
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 serializeSparkConnectorSourceDocument(serializer: Serializer, input: SparkConnectorSource) {
val ADDITIONALOPTIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, JsonSerialName("AdditionalOptions"))
val CONNECTIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConnectionName"))
val CONNECTIONTYPE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConnectionType"))
val CONNECTORNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConnectorName"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
val OUTPUTSCHEMAS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("OutputSchemas"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ADDITIONALOPTIONS_DESCRIPTOR)
field(CONNECTIONNAME_DESCRIPTOR)
field(CONNECTIONTYPE_DESCRIPTOR)
field(CONNECTORNAME_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(OUTPUTSCHEMAS_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(NAME_DESCRIPTOR, input.name)
field(CONNECTIONNAME_DESCRIPTOR, input.connectionName)
field(CONNECTORNAME_DESCRIPTOR, input.connectorName)
field(CONNECTIONTYPE_DESCRIPTOR, input.connectionType)
if (input.additionalOptions != null) {
mapField(ADDITIONALOPTIONS_DESCRIPTOR) {
input.additionalOptions.forEach { (key, value) ->
entry(key, value)
}
}
}
if (input.outputSchemas != null) {
listField(OUTPUTSCHEMAS_DESCRIPTOR) {
for (el0 in input.outputSchemas) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeGlueSchemaDocument))
}
}
}
}
}