commonMain.aws.sdk.kotlin.services.iotwireless.serde.GetWirelessDeviceOperationSerializer.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iotwireless-jvm Show documentation
Show all versions of iotwireless-jvm Show documentation
The AWS Kotlin client for IoT Wireless
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.iotwireless.serde
import aws.sdk.kotlin.services.iotwireless.model.GetWirelessDeviceRequest
import aws.sdk.kotlin.services.iotwireless.model.WirelessDeviceIdType
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 GetWirelessDeviceOperationSerializer: HttpSerializer.NonStreaming {
override fun serialize(context: ExecutionContext, input: GetWirelessDeviceRequest): HttpRequestBuilder {
val builder = HttpRequestBuilder()
builder.method = HttpMethod.GET
builder.url {
requireNotNull(input.identifier) { "identifier is bound to the URI and must not be null" }
path.encodedSegments {
add(PercentEncoding.Path.encode("wireless-devices"))
add(PercentEncoding.SmithyLabel.encode(input.identifier))
}
parameters.decodedParameters(PercentEncoding.SmithyLabel) {
if (input.identifierType != null) add("identifierType", input.identifierType.value)
}
}
return builder
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy