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

commonMain.aws.sdk.kotlin.services.codecatalyst.auth.DefaultCodeCatalystAuthSchemeProvider.kt Maven / Gradle / Ivy

There is a newer version: 1.3.76
Show newest version
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!

package aws.sdk.kotlin.services.codecatalyst.auth

import aws.sdk.kotlin.services.codecatalyst.endpoints.CodeCatalystEndpointProvider
import aws.smithy.kotlin.runtime.auth.AuthOption
import aws.smithy.kotlin.runtime.auth.AuthSchemeId

public class DefaultCodeCatalystAuthSchemeProvider(private val endpointProvider: CodeCatalystEndpointProvider? = null) : CodeCatalystAuthSchemeProvider {
    private val operationOverrides = mapOf>(
    )
    private val serviceDefaults = listOf(
        AuthOption(AuthSchemeId.HttpBearer),
    )
    override suspend fun resolveAuthScheme(params: CodeCatalystAuthSchemeParameters): List {
        val modeledAuthOptions = operationOverrides.getOrElse(params.operationName) {
            serviceDefaults
        }
        return modeledAuthOptions
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy