commonMain.aws.sdk.kotlin.services.pinpointsmsvoicev2.serde.CreateEventDestinationOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pinpointsmsvoicev2-jvm Show documentation
Show all versions of pinpointsmsvoicev2-jvm Show documentation
The AWS SDK for Kotlin client for Pinpoint SMS Voice V2
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.pinpointsmsvoicev2.serde
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CloudWatchLogsDestination
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.CreateEventDestinationRequest
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.EventType
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.KinesisFirehoseDestination
import aws.sdk.kotlin.services.pinpointsmsvoicev2.model.SnsDestination
import aws.smithy.kotlin.runtime.client.idempotencyTokenProvider
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.json.JsonDeserializer
import aws.smithy.kotlin.runtime.serde.json.JsonSerialName
import aws.smithy.kotlin.runtime.serde.json.JsonSerializer
import aws.smithy.kotlin.runtime.serde.serializeList
import aws.smithy.kotlin.runtime.serde.serializeMap
import aws.smithy.kotlin.runtime.serde.serializeStruct
internal class CreateEventDestinationOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: CreateEventDestinationRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/"
}
val payload = serializeCreateEventDestinationOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/x-amz-json-1.0")
}
return builder
}
}
private fun serializeCreateEventDestinationOperationBody(context: ExecutionContext, input: CreateEventDestinationRequest): ByteArray {
val serializer = JsonSerializer()
val CLIENTTOKEN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ClientToken"))
val CLOUDWATCHLOGSDESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("CloudWatchLogsDestination"))
val CONFIGURATIONSETNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ConfigurationSetName"))
val EVENTDESTINATIONNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("EventDestinationName"))
val KINESISFIREHOSEDESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("KinesisFirehoseDestination"))
val MATCHINGEVENTTYPES_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("MatchingEventTypes"))
val SNSDESTINATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SnsDestination"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CLIENTTOKEN_DESCRIPTOR)
field(CLOUDWATCHLOGSDESTINATION_DESCRIPTOR)
field(CONFIGURATIONSETNAME_DESCRIPTOR)
field(EVENTDESTINATIONNAME_DESCRIPTOR)
field(KINESISFIREHOSEDESTINATION_DESCRIPTOR)
field(MATCHINGEVENTTYPES_DESCRIPTOR)
field(SNSDESTINATION_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.clientToken?.let { field(CLIENTTOKEN_DESCRIPTOR, it) } ?: field(CLIENTTOKEN_DESCRIPTOR, context.idempotencyTokenProvider.generateToken())
input.cloudWatchLogsDestination?.let { field(CLOUDWATCHLOGSDESTINATION_DESCRIPTOR, it, ::serializeCloudWatchLogsDestinationDocument) }
input.configurationSetName?.let { field(CONFIGURATIONSETNAME_DESCRIPTOR, it) }
input.eventDestinationName?.let { field(EVENTDESTINATIONNAME_DESCRIPTOR, it) }
input.kinesisFirehoseDestination?.let { field(KINESISFIREHOSEDESTINATION_DESCRIPTOR, it, ::serializeKinesisFirehoseDestinationDocument) }
if (input.matchingEventTypes != null) {
listField(MATCHINGEVENTTYPES_DESCRIPTOR) {
for (el0 in input.matchingEventTypes) {
serializeString(el0.value)
}
}
}
input.snsDestination?.let { field(SNSDESTINATION_DESCRIPTOR, it, ::serializeSnsDestinationDocument) }
}
return serializer.toByteArray()
}