commonMain.aws.sdk.kotlin.services.fms.transform.AwsEc2InstanceViolationDocumentDeserializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.fms.transform
import aws.sdk.kotlin.services.fms.model.AwsEc2InstanceViolation
import aws.sdk.kotlin.services.fms.model.AwsEc2NetworkInterfaceViolation
import aws.smithy.kotlin.runtime.serde.Deserializer
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.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
import kotlin.collections.mutableListOf
internal fun deserializeAwsEc2InstanceViolationDocument(deserializer: Deserializer): AwsEc2InstanceViolation {
val builder = AwsEc2InstanceViolation.Builder()
val AWSEC2NETWORKINTERFACEVIOLATIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("AwsEc2NetworkInterfaceViolations"))
val VIOLATIONTARGET_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ViolationTarget"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AWSEC2NETWORKINTERFACEVIOLATIONS_DESCRIPTOR)
field(VIOLATIONTARGET_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AWSEC2NETWORKINTERFACEVIOLATIONS_DESCRIPTOR.index -> builder.awsEc2NetworkInterfaceViolations =
deserializer.deserializeList(AWSEC2NETWORKINTERFACEVIOLATIONS_DESCRIPTOR) {
val col0 = mutableListOf()
while (hasNextElement()) {
val el0 = if (nextHasValue()) { deserializeAwsEc2NetworkInterfaceViolationDocument(deserializer) } else { deserializeNull(); continue }
col0.add(el0)
}
col0
}
VIOLATIONTARGET_DESCRIPTOR.index -> builder.violationTarget = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy