commonMain.aws.sdk.kotlin.services.neptunegraph.auth.DefaultNeptuneGraphAuthSchemeProvider.kt Maven / Gradle / Ivy
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.neptunegraph.auth
import aws.sdk.kotlin.services.neptunegraph.endpoints.NeptuneGraphEndpointProvider
import aws.smithy.kotlin.runtime.auth.AuthOption
import aws.smithy.kotlin.runtime.http.auth.sigV4
public class DefaultNeptuneGraphAuthSchemeProvider(private val endpointProvider: NeptuneGraphEndpointProvider? = null) : NeptuneGraphAuthSchemeProvider {
private val operationOverrides = mapOf>(
)
private val serviceDefaults = listOf(
sigV4(),
)
override suspend fun resolveAuthScheme(params: NeptuneGraphAuthSchemeParameters): List {
val modeledAuthOptions = operationOverrides.getOrElse(params.operationName) {
serviceDefaults
}
return modeledAuthOptions
}
}