commonMain.aws.smithy.kotlin.runtime.http.auth.HttpAuthConfig.kt Maven / Gradle / Ivy
/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
package aws.smithy.kotlin.runtime.http.auth
/**
* The user-accessible configuration properties for the SDKs HTTP authentication schemes
*/
public interface HttpAuthConfig {
/**
* New or overridden [AuthScheme]'s configured for this client. By default, the set
* of auth schemes configured comes from the service model. An auth scheme configured explicitly takes
* precedence over the defaults and can be used to customize identity resolution and signing for specific
* authentication schemes.
*/
public val authSchemes: List
public interface Builder {
/**
* Register new or override default [AuthScheme]'s configured for this client. By default, the set
* of auth schemes configured comes from the service model. An auth scheme configured explicitly takes
* precedence over the defaults and can be used to customize identity resolution and signing for specific
* authentication schemes.
*/
public var authSchemes: List
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy