All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.aws.sdk.kotlin.services.sagemakera2iruntime.auth.SageMakerA2IRuntimeAuthSchemeProviderAdapter.kt Maven / Gradle / Ivy

// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.sagemakera2iruntime.auth

import aws.sdk.kotlin.services.sagemakera2iruntime.SageMakerA2IRuntimeClient
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 SageMakerA2IRuntimeAuthSchemeProviderAdapter(private val config: SageMakerA2IRuntimeClient.Config): AuthSchemeResolver {
    override suspend fun resolve(request: SdkHttpRequest): List {
        val params = SageMakerA2IRuntimeAuthSchemeParameters {
            operationName = request.context[SdkClientOption.OperationName]
        }
        return config.authSchemeProvider.resolveAuthScheme(params)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy