commonMain.aws.sdk.kotlin.services.redshiftserverless.serde.SnapshotCopyConfigurationDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshiftserverless-jvm Show documentation
Show all versions of redshiftserverless-jvm Show documentation
The AWS SDK for Kotlin client for Redshift Serverless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshiftserverless.serde
import aws.sdk.kotlin.services.redshiftserverless.model.SnapshotCopyConfiguration
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 deserializeSnapshotCopyConfigurationDocument(deserializer: Deserializer): SnapshotCopyConfiguration {
val builder = SnapshotCopyConfiguration.Builder()
val DESTINATIONKMSKEYID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("destinationKmsKeyId"))
val DESTINATIONREGION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("destinationRegion"))
val NAMESPACENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("namespaceName"))
val SNAPSHOTCOPYCONFIGURATIONARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("snapshotCopyConfigurationArn"))
val SNAPSHOTCOPYCONFIGURATIONID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("snapshotCopyConfigurationId"))
val SNAPSHOTRETENTIONPERIOD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("snapshotRetentionPeriod"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DESTINATIONKMSKEYID_DESCRIPTOR)
field(DESTINATIONREGION_DESCRIPTOR)
field(NAMESPACENAME_DESCRIPTOR)
field(SNAPSHOTCOPYCONFIGURATIONARN_DESCRIPTOR)
field(SNAPSHOTCOPYCONFIGURATIONID_DESCRIPTOR)
field(SNAPSHOTRETENTIONPERIOD_DESCRIPTOR)
}
deserializer.deserializeStruct(OBJ_DESCRIPTOR) {
loop@while (true) {
when (findNextFieldIndex()) {
DESTINATIONKMSKEYID_DESCRIPTOR.index -> builder.destinationKmsKeyId = deserializeString()
DESTINATIONREGION_DESCRIPTOR.index -> builder.destinationRegion = deserializeString()
NAMESPACENAME_DESCRIPTOR.index -> builder.namespaceName = deserializeString()
SNAPSHOTCOPYCONFIGURATIONARN_DESCRIPTOR.index -> builder.snapshotCopyConfigurationArn = deserializeString()
SNAPSHOTCOPYCONFIGURATIONID_DESCRIPTOR.index -> builder.snapshotCopyConfigurationId = deserializeString()
SNAPSHOTRETENTIONPERIOD_DESCRIPTOR.index -> builder.snapshotRetentionPeriod = deserializeInt()
null -> break@loop
else -> skipValue()
}
}
}
builder.correctErrors()
return builder.build()
}