commonMain.aws.sdk.kotlin.services.s3outposts.serde.OutpostDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of s3outposts-jvm Show documentation
Show all versions of s3outposts-jvm Show documentation
The AWS SDK for Kotlin client for S3Outposts
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.s3outposts.serde
import aws.sdk.kotlin.services.s3outposts.model.Outpost
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 deserializeOutpostDocument(deserializer: Deserializer): Outpost {
val builder = Outpost.Builder()
val CAPACITYINBYTES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Long, JsonSerialName("CapacityInBytes"))
val OUTPOSTARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OutpostArn"))
val OUTPOSTID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OutpostId"))
val OWNERID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("OwnerId"))
val S3OUTPOSTARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("S3OutpostArn"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CAPACITYINBYTES_DESCRIPTOR)
field(OUTPOSTARN_DESCRIPTOR)
field(OUTPOSTID_DESCRIPTOR)
field(OWNERID_DESCRIPTOR)
field(S3OUTPOSTARN_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
CAPACITYINBYTES_DESCRIPTOR.index -> builder.capacityInBytes = deserializeLong()
OUTPOSTARN_DESCRIPTOR.index -> builder.outpostArn = deserializeString()
OUTPOSTID_DESCRIPTOR.index -> builder.outpostId = deserializeString()
OWNERID_DESCRIPTOR.index -> builder.ownerId = deserializeString()
S3OUTPOSTARN_DESCRIPTOR.index -> builder.s3OutpostArn = deserializeString()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy