![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.aws.sdk.kotlin.services.redshift.serde.CreateIntegrationOperationSerializer.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.CreateIntegrationRequest
import aws.sdk.kotlin.services.redshift.model.Tag
import aws.smithy.kotlin.runtime.http.HttpBody
import aws.smithy.kotlin.runtime.http.HttpMethod
import aws.smithy.kotlin.runtime.http.operation.HttpSerializer
import aws.smithy.kotlin.runtime.http.request.HttpRequestBuilder
import aws.smithy.kotlin.runtime.http.request.url
import aws.smithy.kotlin.runtime.operation.ExecutionContext
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.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.formurl.FormUrlCollectionName
import aws.smithy.kotlin.runtime.serde.formurl.FormUrlSerialName
import aws.smithy.kotlin.runtime.serde.formurl.FormUrlSerializer
import aws.smithy.kotlin.runtime.serde.formurl.QueryLiteral
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal class CreateIntegrationOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: CreateIntegrationRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/"
}
val payload = serializeCreateIntegrationOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/x-www-form-urlencoded")
}
return builder
}
}
private fun serializeCreateIntegrationOperationBody(context: ExecutionContext, input: CreateIntegrationRequest): ByteArray {
val serializer = FormUrlSerializer()
val ADDITIONALENCRYPTIONCONTEXT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Map, FormUrlSerialName("AdditionalEncryptionContext"))
val DESCRIPTION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("Description"))
val INTEGRATIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("IntegrationName"))
val KMSKEYID_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("KMSKeyId"))
val SOURCEARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("SourceArn"))
val TAGLIST_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, FormUrlSerialName("TagList"), FormUrlCollectionName("Tag"))
val TARGETARN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, FormUrlSerialName("TargetArn"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
trait(FormUrlSerialName("CreateIntegrationMessage"))
trait(QueryLiteral("Action", "CreateIntegration"))
trait(QueryLiteral("Version", "2012-12-01"))
field(ADDITIONALENCRYPTIONCONTEXT_DESCRIPTOR)
field(DESCRIPTION_DESCRIPTOR)
field(INTEGRATIONNAME_DESCRIPTOR)
field(KMSKEYID_DESCRIPTOR)
field(SOURCEARN_DESCRIPTOR)
field(TAGLIST_DESCRIPTOR)
field(TARGETARN_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
if (input.additionalEncryptionContext != null) {
mapField(ADDITIONALENCRYPTIONCONTEXT_DESCRIPTOR) {
input.additionalEncryptionContext.forEach { (key, value) ->
entry(key, value)
}
}
}
input.description?.let { field(DESCRIPTION_DESCRIPTOR, it) }
input.integrationName?.let { field(INTEGRATIONNAME_DESCRIPTOR, it) }
input.kmsKeyId?.let { field(KMSKEYID_DESCRIPTOR, it) }
input.sourceArn?.let { field(SOURCEARN_DESCRIPTOR, it) }
if (input.tagList != null) {
listField(TAGLIST_DESCRIPTOR) {
for (el0 in input.tagList) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeTagDocument))
}
}
}
input.targetArn?.let { field(TARGETARN_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy