commonMain.aws.sdk.kotlin.services.eventbridge.auth.DefaultEventBridgeAuthSchemeProvider.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eventbridge-jvm Show documentation
Show all versions of eventbridge-jvm Show documentation
The AWS SDK for Kotlin client for EventBridge
// Code generated by smithy-kotlin-codegen. DO NOT EDIT!
package aws.sdk.kotlin.services.eventbridge.auth
import aws.sdk.kotlin.services.eventbridge.endpoints.EventBridgeEndpointProvider
import aws.smithy.kotlin.runtime.auth.AuthOption
import aws.smithy.kotlin.runtime.client.endpoints.authOptions
import aws.smithy.kotlin.runtime.http.auth.mergeAuthOptions
import aws.smithy.kotlin.runtime.http.auth.sigV4
import aws.smithy.kotlin.runtime.http.auth.sigV4A
public class DefaultEventBridgeAuthSchemeProvider(private val endpointProvider: EventBridgeEndpointProvider? = null) : EventBridgeAuthSchemeProvider {
private val operationOverrides = mapOf>(
)
private val serviceDefaults = listOf(
sigV4(),
sigV4A(),
)
override suspend fun resolveAuthScheme(params: EventBridgeAuthSchemeParameters): List {
val modeledAuthOptions = operationOverrides.getOrElse(params.operationName) {
serviceDefaults
}
val endpointParams = params.endpointParameters
val endpointAuthOptions = if (endpointProvider != null && endpointParams != null) {
val endpoint = endpointProvider.resolveEndpoint(endpointParams)
endpoint.authOptions
} else {
emptyList()
}
return mergeAuthOptions(modeledAuthOptions, endpointAuthOptions)
}
}