commonMain.aws.sdk.kotlin.services.glue.serde.StartDataQualityRuleRecommendationRunOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of glue-jvm Show documentation
Show all versions of glue-jvm Show documentation
The AWS SDK for Kotlin client for Glue
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.glue.serde
import aws.sdk.kotlin.services.glue.model.DataSource
import aws.sdk.kotlin.services.glue.model.StartDataQualityRuleRecommendationRunRequest
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 StartDataQualityRuleRecommendationRunOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: StartDataQualityRuleRecommendationRunRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.POST
builder.url {
path.encoded = "/"
}
val payload = serializeStartDataQualityRuleRecommendationRunOperationBody(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 serializeStartDataQualityRuleRecommendationRunOperationBody(context: ExecutionContext, input: StartDataQualityRuleRecommendationRunRequest): ByteArray {
val serializer = JsonSerializer()
val CLIENTTOKEN_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("ClientToken"))
val CREATEDRULESETNAME_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("CreatedRulesetName"))
val DATAQUALITYSECURITYCONFIGURATION_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("DataQualitySecurityConfiguration"))
val DATASOURCE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Struct, JsonSerialName("DataSource"))
val NUMBEROFWORKERS_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("NumberOfWorkers"))
val ROLE_DESCRIPTOR = SdkFieldDescriptor(SerialKind.String, JsonSerialName("Role"))
val TIMEOUT_DESCRIPTOR = SdkFieldDescriptor(SerialKind.Integer, JsonSerialName("Timeout"))
val OBJ_DESCRIPTOR = SdkObjectDescriptor.build {
field(CLIENTTOKEN_DESCRIPTOR)
field(CREATEDRULESETNAME_DESCRIPTOR)
field(DATAQUALITYSECURITYCONFIGURATION_DESCRIPTOR)
field(DATASOURCE_DESCRIPTOR)
field(NUMBEROFWORKERS_DESCRIPTOR)
field(ROLE_DESCRIPTOR)
field(TIMEOUT_DESCRIPTOR)
}
serializer.serializeStruct(OBJ_DESCRIPTOR) {
input.clientToken?.let { field(CLIENTTOKEN_DESCRIPTOR, it) }
input.createdRulesetName?.let { field(CREATEDRULESETNAME_DESCRIPTOR, it) }
input.dataQualitySecurityConfiguration?.let { field(DATAQUALITYSECURITYCONFIGURATION_DESCRIPTOR, it) }
input.dataSource?.let { field(DATASOURCE_DESCRIPTOR, it, ::serializeDataSourceDocument) }
input.numberOfWorkers?.let { field(NUMBEROFWORKERS_DESCRIPTOR, it) }
input.role?.let { field(ROLE_DESCRIPTOR, it) }
input.timeout?.let { field(TIMEOUT_DESCRIPTOR, it) }
}
return serializer.toByteArray()
}