
commonMain.aws.sdk.kotlin.services.rekognition.serde.UpdateStreamProcessorOperationSerializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.rekognition.serde
import aws.sdk.kotlin.services.rekognition.model.RegionOfInterest
import aws.sdk.kotlin.services.rekognition.model.StreamProcessorDataSharingPreference
import aws.sdk.kotlin.services.rekognition.model.StreamProcessorParameterToDelete
import aws.sdk.kotlin.services.rekognition.model.StreamProcessorSettingsForUpdate
import aws.sdk.kotlin.services.rekognition.model.UpdateStreamProcessorRequest
import aws.smithy.kotlin.runtime.http.HttpBody
import aws.smithy.kotlin.runtime.http.HttpMethod
import aws.smithy.kotlin.runtime.http.operation.HttpSerialize
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 UpdateStreamProcessorOperationSerializer: HttpSerialize {
override suspend fun serialize(context: ExecutionContext, input: UpdateStreamProcessorRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path = "/"
}
val payload = serializeUpdateStreamProcessorOperationBody(context, input)
builder.body = HttpBody.fromBytes(payload)
if (builder.body !is HttpBody.Empty) {
builder.headers.setMissing("Content-Type", "application/x-amz-json-1.1")
}
return builder
}
}
private fun serializeUpdateStreamProcessorOperationBody(context: ExecutionContext, input: UpdateStreamProcessorRequest): ByteArray {
val serializer = JsonSerializer()
val DATASHARINGPREFERENCEFORUPDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("DataSharingPreferenceForUpdate"))
val NAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Name"))
val PARAMETERSTODELETE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("ParametersToDelete"))
val REGIONSOFINTERESTFORUPDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.List, JsonSerialName("RegionsOfInterestForUpdate"))
val SETTINGSFORUPDATE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("SettingsForUpdate"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(DATASHARINGPREFERENCEFORUPDATE_DESCRIPTOR)
field(NAME_DESCRIPTOR)
field(PARAMETERSTODELETE_DESCRIPTOR)
field(REGIONSOFINTERESTFORUPDATE_DESCRIPTOR)
field(SETTINGSFORUPDATE_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.dataSharingPreferenceForUpdate?.let { field(DATASHARINGPREFERENCEFORUPDATE_DESCRIPTOR, it, ::serializeStreamProcessorDataSharingPreferenceDocument) }
input.name?.let { field(NAME_DESCRIPTOR, it) }
if (input.parametersToDelete != null) {
listField(PARAMETERSTODELETE_DESCRIPTOR) {
for (el0 in input.parametersToDelete) {
serializeString(el0.value)
}
}
}
if (input.regionsOfInterestForUpdate != null) {
listField(REGIONSOFINTERESTFORUPDATE_DESCRIPTOR) {
for (el0 in input.regionsOfInterestForUpdate) {
serializeSdkSerializable(asSdkSerializable(el0, ::serializeRegionOfInterestDocument))
}
}
}
input.settingsForUpdate?.let { field(SETTINGSFORUPDATE_DESCRIPTOR, it, ::serializeStreamProcessorSettingsForUpdateDocument) }
}
return serializer.toByteArray()
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy