commonMain.aws.sdk.kotlin.services.glacier.serde.InventoryRetrievalJobInputDocumentSerializer.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.InventoryRetrievalJobInput
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 serializeInventoryRetrievalJobInputDocument(serializer: Serializer, input: InventoryRetrievalJobInput) {
val ENDDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("EndDate"))
val LIMIT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Limit"))
val MARKER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Marker"))
val STARTDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("StartDate"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ENDDATE_DESCRIPTOR)
field(LIMIT_DESCRIPTOR)
field(MARKER_DESCRIPTOR)
field(STARTDATE_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.startDate?.let { field(STARTDATE_DESCRIPTOR, it) }
input.endDate?.let { field(ENDDATE_DESCRIPTOR, it) }
input.limit?.let { field(LIMIT_DESCRIPTOR, it) }
input.marker?.let { field(MARKER_DESCRIPTOR, it) }
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy