commonMain.aws.sdk.kotlin.services.databrew.serde.S3LocationDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of databrew-jvm Show documentation
Show all versions of databrew-jvm Show documentation
The AWS Kotlin client for DataBrew
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.databrew.serde
import aws.sdk.kotlin.services.databrew.model.S3Location
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 serializeS3LocationDocument(serializer: Serializer, input: S3Location) {
val BUCKET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Bucket"))
val BUCKETOWNER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("BucketOwner"))
val KEY_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Key"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(BUCKET_DESCRIPTOR)
field(BUCKETOWNER_DESCRIPTOR)
field(KEY_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(BUCKET_DESCRIPTOR, input.bucket)
input.key?.let { field(KEY_DESCRIPTOR, it) }
input.bucketOwner?.let { field(BUCKETOWNER_DESCRIPTOR, it) }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy