commonMain.aws.sdk.kotlin.services.datazone.serde.GetUserProfileOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datazone-jvm Show documentation
Show all versions of datazone-jvm Show documentation
The AWS SDK for Kotlin client for DataZone
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.datazone.serde
import aws.sdk.kotlin.services.datazone.model.GetUserProfileRequest
import aws.sdk.kotlin.services.datazone.model.UserProfileType
import aws.smithy.kotlin.runtime.http.HttpBody
import aws.smithy.kotlin.runtime.http.HttpMethod
import aws.smithy.kotlin.runtime.http.operation.HttpSerialize
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 GetUserProfileOperationSerializer: HttpSerialize {
override suspend fun serialize(context: ExecutionContext, input: GetUserProfileRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.GET
builder.url {
requireNotNull(input.domainIdentifier) { "domainIdentifier is bound to the URI and must not be null" }
requireNotNull(input.userIdentifier) { "userIdentifier is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("v2"))
add(PercentEncoding.Path.encode("domains"))
add(PercentEncoding.SmithyLabel.encode("${input.domainIdentifier}"))
add(PercentEncoding.Path.encode("user-profiles"))
add(PercentEncoding.SmithyLabel.encode("${input.userIdentifier}"))
}
parameters.decodedParameters(PercentEncoding.SmithyLabel) {
if (input.type != null) add("type", input.type.value)
}
}
return builder
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy