commonMain.aws.sdk.kotlin.services.bedrockruntime.serde.GuardrailStreamConfigurationDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bedrockruntime-jvm Show documentation
Show all versions of bedrockruntime-jvm Show documentation
The AWS SDK for Kotlin client for Bedrock Runtime
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockruntime.serde
import aws.sdk.kotlin.services.bedrockruntime.model.GuardrailStreamConfiguration
import aws.smithy.kotlin.runtime.serde.SdkFieldDescriptor
import aws.smithy.kotlin.runtime.serde.SdkObjectDescriptor
import aws.smithy.kotlin.runtime.serde.SerialKind
import aws.smithy.kotlin.runtime.serde.Serializer
import aws.smithy.kotlin.runtime.serde.asSdkSerializable
import aws.smithy.kotlin.runtime.serde.deserializeList
import aws.smithy.kotlin.runtime.serde.deserializeMap
import aws.smithy.kotlin.runtime.serde.deserializeStruct
import aws.smithy.kotlin.runtime.serde.field
import aws.smithy.kotlin.runtime.serde.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal fun serializeGuardrailStreamConfigurationDocument(serializer: Serializer, input: GuardrailStreamConfiguration) {
val GUARDRAILIDENTIFIER_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("guardrailIdentifier"))
val GUARDRAILVERSION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("guardrailVersion"))
val STREAMPROCESSINGMODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("streamProcessingMode"))
val TRACE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("trace"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(GUARDRAILIDENTIFIER_DESCRIPTOR)
field(GUARDRAILVERSION_DESCRIPTOR)
field(STREAMPROCESSINGMODE_DESCRIPTOR)
field(TRACE_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(GUARDRAILIDENTIFIER_DESCRIPTOR, input.guardrailIdentifier)
field(GUARDRAILVERSION_DESCRIPTOR, input.guardrailVersion)
if (input.trace != aws.sdk.kotlin.services.bedrockruntime.model.GuardrailTrace.fromValue("disabled")) field(TRACE_DESCRIPTOR, input.trace.value)
if (input.streamProcessingMode != aws.sdk.kotlin.services.bedrockruntime.model.GuardrailStreamProcessingMode.fromValue("sync")) field(STREAMPROCESSINGMODE_DESCRIPTOR, input.streamProcessingMode.value)
}
}