commonMain.aws.sdk.kotlin.services.redshift.serde.SnapshotScheduleDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redshift-jvm Show documentation
Show all versions of redshift-jvm Show documentation
The AWS SDK for Kotlin client for Redshift
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.redshift.serde
import aws.sdk.kotlin.services.redshift.model.SnapshotSchedule
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parseInt
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeSnapshotScheduleDocument(reader: XmlTagReader): SnapshotSchedule {
val builder = SnapshotSchedule.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// ScheduleDefinitions com.amazonaws.redshift#SnapshotSchedule$ScheduleDefinitions
"ScheduleDefinitions" -> builder.scheduleDefinitions = deserializeScheduleDefinitionListShape(curr)
// ScheduleIdentifier com.amazonaws.redshift#SnapshotSchedule$ScheduleIdentifier
"ScheduleIdentifier" -> builder.scheduleIdentifier = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.redshift#String`)" }
// ScheduleDescription com.amazonaws.redshift#SnapshotSchedule$ScheduleDescription
"ScheduleDescription" -> builder.scheduleDescription = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.redshift#String`)" }
// Tags com.amazonaws.redshift#SnapshotSchedule$Tags
"Tags" -> builder.tags = deserializeTagListShape(curr)
// NextInvocations com.amazonaws.redshift#SnapshotSchedule$NextInvocations
"NextInvocations" -> builder.nextInvocations = deserializeScheduledSnapshotTimeListShape(curr)
// AssociatedClusterCount com.amazonaws.redshift#SnapshotSchedule$AssociatedClusterCount
"AssociatedClusterCount" -> builder.associatedClusterCount = curr.tryData()
.parseInt()
.getOrDeserializeErr { "expected (integer: `com.amazonaws.redshift#IntegerOptional`)" }
// AssociatedClusters com.amazonaws.redshift#SnapshotSchedule$AssociatedClusters
"AssociatedClusters" -> builder.associatedClusters = deserializeAssociatedClusterListShape(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}