All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.elastictranscoder.serde.CaptionSourceDocumentSerializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.37
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.elastictranscoder.serde

import aws.sdk.kotlin.services.elastictranscoder.model.CaptionSource
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 serializeCaptionSourceDocument(serializer: Serializer, input: CaptionSource) {
    val ENCRYPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Encryption"))
    val KEY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Key"))
    val LABEL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Label"))
    val LANGUAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Language"))
    val TIMEOFFSET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("TimeOffset"))
    val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
        field(ENCRYPTION_DESCRIPTOR)
        field(KEY_DESCRIPTOR)
        field(LABEL_DESCRIPTOR)
        field(LANGUAGE_DESCRIPTOR)
        field(TIMEOFFSET_DESCRIPTOR)
    }

    serializer.serializeStruct(OBJ_DESCRIPTOR) {
        input.key?.let { field(KEY_DESCRIPTOR, it) }
        input.language?.let { field(LANGUAGE_DESCRIPTOR, it) }
        input.timeOffset?.let { field(TIMEOFFSET_DESCRIPTOR, it) }
        input.label?.let { field(LABEL_DESCRIPTOR, it) }
        input.encryption?.let { field(ENCRYPTION_DESCRIPTOR, it, ::serializeEncryptionDocument) }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy