commonMain.aws.sdk.kotlin.services.neptune.serde.PendingMaintenanceActionDocumentDeserializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neptune-jvm Show documentation
Show all versions of neptune-jvm Show documentation
The AWS SDK for Kotlin client for Neptune
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptune.serde
import aws.sdk.kotlin.services.neptune.model.PendingMaintenanceAction
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.parseTimestamp
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
import aws.smithy.kotlin.runtime.time.TimestampFormat
internal fun deserializePendingMaintenanceActionDocument(reader: XmlTagReader): PendingMaintenanceAction {
val builder = PendingMaintenanceAction.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// Action com.amazonaws.neptune#PendingMaintenanceAction$Action
"Action" -> builder.action = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// AutoAppliedAfterDate com.amazonaws.neptune#PendingMaintenanceAction$AutoAppliedAfterDate
"AutoAppliedAfterDate" -> builder.autoAppliedAfterDate = curr.tryData()
.parseTimestamp(TimestampFormat.ISO_8601)
.getOrDeserializeErr { "expected (timestamp: `com.amazonaws.neptune#TStamp`)" }
// ForcedApplyDate com.amazonaws.neptune#PendingMaintenanceAction$ForcedApplyDate
"ForcedApplyDate" -> builder.forcedApplyDate = curr.tryData()
.parseTimestamp(TimestampFormat.ISO_8601)
.getOrDeserializeErr { "expected (timestamp: `com.amazonaws.neptune#TStamp`)" }
// OptInStatus com.amazonaws.neptune#PendingMaintenanceAction$OptInStatus
"OptInStatus" -> builder.optInStatus = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
// CurrentApplyDate com.amazonaws.neptune#PendingMaintenanceAction$CurrentApplyDate
"CurrentApplyDate" -> builder.currentApplyDate = curr.tryData()
.parseTimestamp(TimestampFormat.ISO_8601)
.getOrDeserializeErr { "expected (timestamp: `com.amazonaws.neptune#TStamp`)" }
// Description com.amazonaws.neptune#PendingMaintenanceAction$Description
"Description" -> builder.description = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.neptune#String`)" }
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}