commonMain.aws.sdk.kotlin.services.ec2instanceconnect.auth.Ec2InstanceConnectAuthSchemeProviderAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ec2instanceconnect-jvm Show documentation
Show all versions of ec2instanceconnect-jvm Show documentation
The AWS SDK for Kotlin client for EC2 Instance Connect
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.ec2instanceconnect.auth
import aws.sdk.kotlin.services.ec2instanceconnect.Ec2InstanceConnectClient
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 Ec2InstanceConnectAuthSchemeProviderAdapter(private val config: Ec2InstanceConnectClient.Config): AuthSchemeResolver {
override suspend fun resolve(request: SdkHttpRequest): List {
val params = Ec2InstanceConnectAuthSchemeParameters {
operationName = request.context[SdkClientOption.OperationName]
}
return config.authSchemeProvider.resolveAuthScheme(params)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy