commonMain.aws.sdk.kotlin.services.entityresolution.serde.BatchDeleteUniqueIdOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of entityresolution-jvm Show documentation
Show all versions of entityresolution-jvm Show documentation
The AWS SDK for Kotlin client for EntityResolution
The newest version!
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.entityresolution.serde
import aws.sdk.kotlin.services.entityresolution.model.BatchDeleteUniqueIdRequest
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.headers
import aws.smithy.kotlin.runtime.http.request.url
import aws.smithy.kotlin.runtime.http.util.quoteHeaderValue
import aws.smithy.kotlin.runtime.operation.ExecutionContext
import aws.smithy.kotlin.runtime.text.encoding.PercentEncoding
internal class BatchDeleteUniqueIdOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: BatchDeleteUniqueIdRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.DELETE
builder.url {
requireNotNull(input.workflowName) { "workflowName is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("matchingworkflows"))
add(PercentEncoding.SmithyLabel.encode(input.workflowName))
add(PercentEncoding.Path.encode("uniqueids"))
}
}
builder.headers {
if (input.inputSource?.isNotEmpty() == true) append("inputSource", input.inputSource)
if (input.uniqueIds?.isNotEmpty() == true) appendAll("uniqueIds", input.uniqueIds.map { quoteHeaderValue(it) })
}
return builder
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy