commonMain.aws.sdk.kotlin.services.comprehend.serde.InvalidRequestExceptionDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of comprehend-jvm Show documentation
Show all versions of comprehend-jvm Show documentation
The AWS SDK for Kotlin client for Comprehend
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.comprehend.serde
import aws.sdk.kotlin.services.comprehend.model.InvalidRequestDetail
import aws.sdk.kotlin.services.comprehend.model.InvalidRequestException
import aws.sdk.kotlin.services.comprehend.model.InvalidRequestReason
import aws.smithy.kotlin.runtime.http.HttpCall
import aws.smithy.kotlin.runtime.http.operation.HttpDeserializer
import aws.smithy.kotlin.runtime.http.response.HttpResponse
import aws.smithy.kotlin.runtime.operation.ExecutionContext
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
internal class InvalidRequestExceptionDeserializer: HttpDeserializer.NonStreaming {
override fun deserialize(context: ExecutionContext, call: HttpCall, payload: ByteArray?): InvalidRequestException {
val response = call.response
val builder = InvalidRequestException.Builder()
if (payload != null) {
deserializeInvalidRequestExceptionError(builder, payload)
}
builder.correctErrors()
return builder.build()
}
}
private fun deserializeInvalidRequestExceptionError(builder: InvalidRequestException.Builder, payload: ByteArray) {
val deserializer = JsonDeserializer(payload)
val DETAIL_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("Detail"))
val MESSAGE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Message"))
val REASON_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("Reason"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DETAIL_DESCRIPTOR)
field(MESSAGE_DESCRIPTOR)
field(REASON_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DETAIL_DESCRIPTOR.index -> builder.detail = deserializeInvalidRequestDetailDocument(deserializer)
MESSAGE_DESCRIPTOR.index -> builder.message = deserializeString()
REASON_DESCRIPTOR.index -> builder.reason = deserializeString().let { InvalidRequestReason.fromValue(it) }
null -> break@loop
else -> skipValue()
}
}
}
}