commonMain.aws.sdk.kotlin.services.bedrockagent.serde.GetPromptOperationSerializer.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.bedrockagent.serde
import aws.sdk.kotlin.services.bedrockagent.model.GetPromptRequest
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 GetPromptOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: GetPromptRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.GET
builder.url {
requireNotNull(input.promptIdentifier) { "promptIdentifier is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("prompts"))
add(PercentEncoding.SmithyLabel.encode(input.promptIdentifier))
}
parameters.decodedParameters(PercentEncoding.SmithyLabel) {
if (input.promptVersion != null) add("promptVersion", input.promptVersion)
}
}
return builder
}
}