commonMain.aws.sdk.kotlin.services.neptunegraph.serde.DeletePrivateGraphEndpointOperationSerializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptunegraph.serde
import aws.sdk.kotlin.services.neptunegraph.model.DeletePrivateGraphEndpointRequest
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.text.encoding.PercentEncoding
internal class DeletePrivateGraphEndpointOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: DeletePrivateGraphEndpointRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.DELETE
builder.url {
requireNotNull(input.graphIdentifier) { "graphIdentifier is bound to the URI and must not be null" }
requireNotNull(input.vpcId) { "vpcId is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("graphs"))
add(PercentEncoding.SmithyLabel.encode(input.graphIdentifier))
add(PercentEncoding.Path.encode("endpoints"))
add(PercentEncoding.SmithyLabel.encode(input.vpcId))
}
}
return builder
}
}