commonMain.aws.sdk.kotlin.services.firehose.serde.AmazonopensearchserviceDestinationConfigurationDocumentSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firehose-jvm Show documentation
Show all versions of firehose-jvm Show documentation
The AWS SDK for Kotlin client for Firehose
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.firehose.serde
import aws.sdk.kotlin.services.firehose.model.AmazonopensearchserviceDestinationConfiguration
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 serializeAmazonopensearchserviceDestinationConfigurationDocument(serializer: Serializer, input: AmazonopensearchserviceDestinationConfiguration) {
val BUFFERINGHINTS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("BufferingHints"))
val CLOUDWATCHLOGGINGOPTIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("CloudWatchLoggingOptions"))
val CLUSTERENDPOINT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ClusterEndpoint"))
val DOCUMENTIDOPTIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("DocumentIdOptions"))
val DOMAINARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DomainARN"))
val INDEXNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("IndexName"))
val INDEXROTATIONPERIOD_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("IndexRotationPeriod"))
val PROCESSINGCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("ProcessingConfiguration"))
val RETRYOPTIONS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("RetryOptions"))
val ROLEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("RoleARN"))
val S3BACKUPMODE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Enum, JsonSerialName("S3BackupMode"))
val S3CONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("S3Configuration"))
val TYPENAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("TypeName"))
val VPCCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("VpcConfiguration"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(BUFFERINGHINTS_DESCRIPTOR)
field(CLOUDWATCHLOGGINGOPTIONS_DESCRIPTOR)
field(CLUSTERENDPOINT_DESCRIPTOR)
field(DOCUMENTIDOPTIONS_DESCRIPTOR)
field(DOMAINARN_DESCRIPTOR)
field(INDEXNAME_DESCRIPTOR)
field(INDEXROTATIONPERIOD_DESCRIPTOR)
field(PROCESSINGCONFIGURATION_DESCRIPTOR)
field(RETRYOPTIONS_DESCRIPTOR)
field(ROLEARN_DESCRIPTOR)
field(S3BACKUPMODE_DESCRIPTOR)
field(S3CONFIGURATION_DESCRIPTOR)
field(TYPENAME_DESCRIPTOR)
field(VPCCONFIGURATION_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
field(ROLEARN_DESCRIPTOR, input.roleArn)
input.domainArn?.let { field(DOMAINARN_DESCRIPTOR, it) }
input.clusterEndpoint?.let { field(CLUSTERENDPOINT_DESCRIPTOR, it) }
field(INDEXNAME_DESCRIPTOR, input.indexName)
input.typeName?.let { field(TYPENAME_DESCRIPTOR, it) }
input.indexRotationPeriod?.let { field(INDEXROTATIONPERIOD_DESCRIPTOR, it.value) }
input.bufferingHints?.let { field(BUFFERINGHINTS_DESCRIPTOR, it, ::serializeAmazonopensearchserviceBufferingHintsDocument) }
input.retryOptions?.let { field(RETRYOPTIONS_DESCRIPTOR, it, ::serializeAmazonopensearchserviceRetryOptionsDocument) }
input.s3BackupMode?.let { field(S3BACKUPMODE_DESCRIPTOR, it.value) }
input.s3Configuration?.let { field(S3CONFIGURATION_DESCRIPTOR, it, ::serializeS3DestinationConfigurationDocument) }
input.processingConfiguration?.let { field(PROCESSINGCONFIGURATION_DESCRIPTOR, it, ::serializeProcessingConfigurationDocument) }
input.cloudWatchLoggingOptions?.let { field(CLOUDWATCHLOGGINGOPTIONS_DESCRIPTOR, it, ::serializeCloudWatchLoggingOptionsDocument) }
input.vpcConfiguration?.let { field(VPCCONFIGURATION_DESCRIPTOR, it, ::serializeVpcConfigurationDocument) }
input.documentIdOptions?.let { field(DOCUMENTIDOPTIONS_DESCRIPTOR, it, ::serializeDocumentIdOptionsDocument) }
}
}