commonMain.aws.sdk.kotlin.services.redshift.serde.ClusterSecurityGroupDocumentDeserializer.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.ClusterSecurityGroup
import aws.smithy.kotlin.runtime.serde.getOrDeserializeErr
import aws.smithy.kotlin.runtime.serde.xml.XmlTagReader
import aws.smithy.kotlin.runtime.serde.xml.tryData
internal fun deserializeClusterSecurityGroupDocument(reader: XmlTagReader): ClusterSecurityGroup {
val builder = ClusterSecurityGroup.Builder()
loop@while (true) {
val curr = reader.nextTag() ?: break@loop
when (curr.tagName) {
// ClusterSecurityGroupName com.amazonaws.redshift#ClusterSecurityGroup$ClusterSecurityGroupName
"ClusterSecurityGroupName" -> builder.clusterSecurityGroupName = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.redshift#String`)" }
// Description com.amazonaws.redshift#ClusterSecurityGroup$Description
"Description" -> builder.description = curr.tryData()
.getOrDeserializeErr { "expected (string: `com.amazonaws.redshift#String`)" }
// EC2SecurityGroups com.amazonaws.redshift#ClusterSecurityGroup$EC2SecurityGroups
"EC2SecurityGroups" -> builder.ec2SecurityGroups = deserializeEC2SecurityGroupListShape(curr)
// IPRanges com.amazonaws.redshift#ClusterSecurityGroup$IPRanges
"IPRanges" -> builder.ipRanges = deserializeIPRangeListShape(curr)
// Tags com.amazonaws.redshift#ClusterSecurityGroup$Tags
"Tags" -> builder.tags = deserializeTagListShape(curr)
else -> {}
}
curr.drop()
}
builder.correctErrors()
return builder.build()
}