aws_smithy_runtime_api/client/auth/
static_resolver.rsuse crate::box_error::BoxError;
use crate::client::auth::{AuthSchemeId, AuthSchemeOptionResolverParams, ResolveAuthSchemeOptions};
use std::borrow::Cow;
#[derive(Debug)]
pub struct StaticAuthSchemeOptionResolver {
auth_scheme_options: Vec<AuthSchemeId>,
}
impl StaticAuthSchemeOptionResolver {
pub fn new(auth_scheme_options: Vec<AuthSchemeId>) -> Self {
Self {
auth_scheme_options,
}
}
}
impl ResolveAuthSchemeOptions for StaticAuthSchemeOptionResolver {
fn resolve_auth_scheme_options(
&self,
_params: &AuthSchemeOptionResolverParams,
) -> Result<Cow<'_, [AuthSchemeId]>, BoxError> {
Ok(Cow::Borrowed(&self.auth_scheme_options))
}
}
#[derive(Debug)]
pub struct StaticAuthSchemeOptionResolverParams;
impl StaticAuthSchemeOptionResolverParams {
pub fn new() -> Self {
Self
}
}
impl From<StaticAuthSchemeOptionResolverParams> for AuthSchemeOptionResolverParams {
fn from(params: StaticAuthSchemeOptionResolverParams) -> Self {
AuthSchemeOptionResolverParams::new(params)
}
}