commonMain.aws.sdk.kotlin.services.route53.auth.Route53AuthSchemeProviderAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of route53-jvm Show documentation
Show all versions of route53-jvm Show documentation
The AWS SDK for Kotlin client for Route 53
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.route53.auth
import aws.sdk.kotlin.services.route53.Route53Client
import aws.smithy.kotlin.runtime.auth.AuthOption
import aws.smithy.kotlin.runtime.client.SdkClientOption
import aws.smithy.kotlin.runtime.collections.get
import aws.smithy.kotlin.runtime.http.operation.AuthSchemeResolver
import aws.smithy.kotlin.runtime.http.operation.SdkHttpRequest
/**
* Adapts the service specific auth scheme resolver to the agnostic runtime interface and binds the auth parameters
*/
internal class Route53AuthSchemeProviderAdapter(private val config: Route53Client.Config): AuthSchemeResolver {
override suspend fun resolve(request: SdkHttpRequest): List {
val params = Route53AuthSchemeParameters {
operationName = request.context[SdkClientOption.OperationName]
}
return config.authSchemeProvider.resolveAuthScheme(params)
}
}