All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.redshift.serde.SnapshotScheduleDocumentDeserializer.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// 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()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy