commonMain.aws.sdk.kotlin.services.route53recoverycluster.serde.UpdateRoutingControlStateEntryDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53recoverycluster-jvm Show documentation
Show all versions of route53recoverycluster-jvm Show documentation
The AWS Kotlin client for Route53 Recovery Cluster
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53recoverycluster.serde
import aws.sdk.kotlin.services.route53recoverycluster.model.UpdateRoutingControlStateEntry
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 serializeUpdateRoutingControlStateEntryDocument(serializer: Serializer, input: UpdateRoutingControlStateEntry) {
val ROUTINGCONTROLARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RoutingControlArn"))
val ROUTINGCONTROLSTATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("RoutingControlState"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(ROUTINGCONTROLARN_DESCRIPTOR)
field(ROUTINGCONTROLSTATE_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(ROUTINGCONTROLARN_DESCRIPTOR, input.routingControlArn)
field(ROUTINGCONTROLSTATE_DESCRIPTOR, input.routingControlState.value)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy