Interface CloudWatchAuthSchemeProvider
-
- All Superinterfaces:
AuthSchemeProvider
- All Known Implementing Classes:
DefaultCloudWatchAuthSchemeProvider,PreferredCloudWatchAuthSchemeProvider
@Generated("software.amazon.awssdk:codegen") public interface CloudWatchAuthSchemeProvider extends AuthSchemeProvider
An auth scheme provider for CloudWatch service. The auth scheme provider takes a set of parameters usingCloudWatchAuthSchemeParams, and resolves a list ofAuthSchemeOptionbased on the given parameters.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static CloudWatchAuthSchemeProviderdefaultProvider()Get the default auth scheme provider.static CloudWatchAuthSchemeProviderdefaultProvider(List<String> authSchemePreference)Get the default auth scheme provider the preferred auth schemes in order of preference.default List<AuthSchemeOption>resolveAuthScheme(Consumer<CloudWatchAuthSchemeParams.Builder> consumer)Resolve the auth schemes based on the given set of parameters.List<AuthSchemeOption>resolveAuthScheme(CloudWatchAuthSchemeParams authSchemeParams)Resolve the auth schemes based on the given set of parameters.
-
-
-
Method Detail
-
resolveAuthScheme
List<AuthSchemeOption> resolveAuthScheme(CloudWatchAuthSchemeParams authSchemeParams)
Resolve the auth schemes based on the given set of parameters.
-
resolveAuthScheme
default List<AuthSchemeOption> resolveAuthScheme(Consumer<CloudWatchAuthSchemeParams.Builder> consumer)
Resolve the auth schemes based on the given set of parameters.
-
defaultProvider
static CloudWatchAuthSchemeProvider defaultProvider()
Get the default auth scheme provider.
-
defaultProvider
static CloudWatchAuthSchemeProvider defaultProvider(List<String> authSchemePreference)
Get the default auth scheme provider the preferred auth schemes in order of preference.
-
-