commonMain.aws.sdk.kotlin.services.sagemakermetrics.auth.SageMakerMetricsAuthSchemeProviderAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sagemakermetrics-jvm Show documentation
Show all versions of sagemakermetrics-jvm Show documentation
The AWS Kotlin client for SageMaker Metrics
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.sagemakermetrics.auth
import aws.smithy.kotlin.runtime.auth.AuthOption
import aws.smithy.kotlin.runtime.client.SdkClientOption
import aws.smithy.kotlin.runtime.http.operation.AuthSchemeResolver
import aws.smithy.kotlin.runtime.http.operation.SdkHttpRequest
import aws.smithy.kotlin.runtime.util.get
/**
* Adapts the service specific auth scheme resolver to the agnostic runtime interface and binds the auth parameters
*/
internal class SageMakerMetricsAuthSchemeProviderAdapter(private val delegate: SageMakerMetricsAuthSchemeProvider): AuthSchemeResolver {
override suspend fun resolve(request: SdkHttpRequest): List {
val params = SageMakerMetricsAuthSchemeParametersImpl {
operationName = request.context[SdkClientOption.OperationName]
}
return delegate.resolveAuthScheme(params)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy