commonMain.aws.sdk.kotlin.services.appconfig.serde.DeleteConfigurationProfileOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appconfig-jvm Show documentation
Show all versions of appconfig-jvm Show documentation
The AWS SDK for Kotlin client for AppConfig
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.appconfig.serde
import aws.sdk.kotlin.services.appconfig.model.DeleteConfigurationProfileRequest
import aws.sdk.kotlin.services.appconfig.model.DeletionProtectionCheck
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.operation.ExecutionContext
import aws.smithy.kotlin.runtime.text.encoding.PercentEncoding
internal class DeleteConfigurationProfileOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: DeleteConfigurationProfileRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.DELETE
builder.url {
requireNotNull(input.applicationId) { "applicationId is bound to the URI and must not be null" }
requireNotNull(input.configurationProfileId) { "configurationProfileId is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("applications"))
add(PercentEncoding.SmithyLabel.encode(input.applicationId))
add(PercentEncoding.Path.encode("configurationprofiles"))
add(PercentEncoding.SmithyLabel.encode(input.configurationProfileId))
}
}
builder.headers {
if (input.deletionProtectionCheck != null) append("x-amzn-deletion-protection-check", input.deletionProtectionCheck.value)
}
return builder
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy