commonMain.aws.sdk.kotlin.services.sagemakergeospatial.serde.RasterDataCollectionQueryOutputDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakergeospatial-jvm Show documentation
Show all versions of sagemakergeospatial-jvm Show documentation
The AWS SDK for Kotlin client for SageMaker Geospatial
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakergeospatial.serde
import aws.sdk.kotlin.services.sagemakergeospatial.model.RasterDataCollectionQueryOutput
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
internal fun deserializeRasterDataCollectionQueryOutputDocument(deserializer: Deserializer): RasterDataCollectionQueryOutput {
val builder = RasterDataCollectionQueryOutput.Builder()
val AREAOFINTEREST_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("AreaOfInterest"))
val PROPERTYFILTERS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("PropertyFilters"))
val RASTERDATACOLLECTIONARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RasterDataCollectionArn"))
val RASTERDATACOLLECTIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RasterDataCollectionName"))
val TIMERANGEFILTER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("TimeRangeFilter"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(AREAOFINTEREST_DESCRIPTOR)
field(PROPERTYFILTERS_DESCRIPTOR)
field(RASTERDATACOLLECTIONARN_DESCRIPTOR)
field(RASTERDATACOLLECTIONNAME_DESCRIPTOR)
field(TIMERANGEFILTER_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
AREAOFINTEREST_DESCRIPTOR.index -> builder.areaOfInterest = deserializeAreaOfInterestDocument(deserializer)
PROPERTYFILTERS_DESCRIPTOR.index -> builder.propertyFilters = deserializePropertyFiltersDocument(deserializer)
RASTERDATACOLLECTIONARN_DESCRIPTOR.index -> builder.rasterDataCollectionArn = deserializeString()
RASTERDATACOLLECTIONNAME_DESCRIPTOR.index -> builder.rasterDataCollectionName = deserializeString()
TIMERANGEFILTER_DESCRIPTOR.index -> builder.timeRangeFilter = deserializeTimeRangeFilterOutputDocument(deserializer)
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}