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

commonMain.aws.sdk.kotlin.services.elasticloadbalancingv2.serde.SslPolicyDocumentDeserializer.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.elasticloadbalancingv2.serde

import aws.sdk.kotlin.services.elasticloadbalancingv2.model.SslPolicy
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 deserializeSslPolicyDocument(reader: XmlTagReader): SslPolicy {
    val builder = SslPolicy.Builder()

    loop@while (true) {
        val curr = reader.nextTag() ?: break@loop
        when (curr.tagName) {
            // SslProtocols com.amazonaws.elasticloadbalancingv2#SslPolicy$SslProtocols
            "SslProtocols" -> builder.sslProtocols = deserializeSslProtocolsShape(curr)
            // Ciphers com.amazonaws.elasticloadbalancingv2#SslPolicy$Ciphers
            "Ciphers" -> builder.ciphers = deserializeCiphersShape(curr)
            // Name com.amazonaws.elasticloadbalancingv2#SslPolicy$Name
            "Name" -> builder.name = curr.tryData()
                .getOrDeserializeErr { "expected (string: `com.amazonaws.elasticloadbalancingv2#SslPolicyName`)" }
            // SupportedLoadBalancerTypes com.amazonaws.elasticloadbalancingv2#SslPolicy$SupportedLoadBalancerTypes
            "SupportedLoadBalancerTypes" -> builder.supportedLoadBalancerTypes = deserializeListOfStringShape(curr)
            else -> {}
        }
        curr.drop()
    }
    builder.correctErrors()
    return builder.build()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy