commonMain.aws.sdk.kotlin.services.cloudwatch.serde.StatisticSetDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloudwatch-jvm Show documentation
Show all versions of cloudwatch-jvm Show documentation
The AWS SDK for Kotlin client for CloudWatch
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.cloudwatch.serde
import aws.sdk.kotlin.services.cloudwatch.model.StatisticSet
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.formurl.FormUrlSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal fun serializeStatisticSetDocument(serializer: Serializer, input: StatisticSet) {
val MAXIMUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, FormUrlSerialName("Maximum"))
val MINIMUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, FormUrlSerialName("Minimum"))
val SAMPLECOUNT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, FormUrlSerialName("SampleCount"))
val SUM_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Double, FormUrlSerialName("Sum"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(FormUrlSerialName("StatisticSet"))
field(MAXIMUM_DESCRIPTOR)
field(MINIMUM_DESCRIPTOR)
field(SAMPLECOUNT_DESCRIPTOR)
field(SUM_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.sampleCount?.let { field(SAMPLECOUNT_DESCRIPTOR, it) }
input.sum?.let { field(SUM_DESCRIPTOR, it) }
input.minimum?.let { field(MINIMUM_DESCRIPTOR, it) }
input.maximum?.let { field(MAXIMUM_DESCRIPTOR, it) }
}
}