aws_sdk_sts/config/
auth.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Auth scheme resolver trait specific to AWS Security Token Service
3                pub trait ResolveAuthScheme: ::std::marker::Send + ::std::marker::Sync + ::std::fmt::Debug {
4                    /// Resolve a priority list of auth scheme options with the given parameters
5                    fn resolve_auth_scheme<'a>(
6                        &'a self,
7                        params: &'a crate::config::auth::Params,
8                        cfg: &'a ::aws_smithy_types::config_bag::ConfigBag,
9                        runtime_components: &'a ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponents,
10                    ) -> ::aws_smithy_runtime_api::client::auth::AuthSchemeOptionsFuture<'a>;
11
12                    /// Convert this service-specific resolver into a `SharedAuthSchemeOptionResolver`
13                    fn into_shared_resolver(self) -> ::aws_smithy_runtime_api::client::auth::SharedAuthSchemeOptionResolver
14                    where
15                        Self: ::std::marker::Sized + 'static,
16                    {
17                        ::aws_smithy_runtime_api::client::auth::SharedAuthSchemeOptionResolver::new(DowncastParams(self))
18                    }
19                }
20
21                #[derive(Debug)]
22                struct DowncastParams<T>(T);
23                impl<T> ::aws_smithy_runtime_api::client::auth::ResolveAuthSchemeOptions for DowncastParams<T>
24                where
25                    T: ResolveAuthScheme,
26                {
27                    fn resolve_auth_scheme_options_v2<'a>(
28                        &'a self,
29                        params: &'a ::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams,
30                        cfg: &'a ::aws_smithy_types::config_bag::ConfigBag,
31                        runtime_components: &'a ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponents,
32                    ) -> ::aws_smithy_runtime_api::client::auth::AuthSchemeOptionsFuture<'a> {
33                        match params.get::<crate::config::auth::Params>() {
34                            ::std::option::Option::Some(concrete_params) => self.0.resolve_auth_scheme(concrete_params, cfg, runtime_components),
35                            ::std::option::Option::None => ::aws_smithy_runtime_api::client::auth::AuthSchemeOptionsFuture::ready(::std::result::Result::Err("params of expected type was not present".into())),
36                        }
37                    }
38                }
39
40/// The default auth scheme resolver
41                #[derive(Debug)]
42                #[allow(dead_code)]
43                pub struct DefaultAuthSchemeResolver {
44                    service_defaults: Vec<::aws_smithy_runtime_api::client::auth::AuthSchemeOption>,
45                    operation_overrides: ::std::collections::HashMap<&'static str, Vec<::aws_smithy_runtime_api::client::auth::AuthSchemeOption>>,
46                }
47
48                // TODO(https://github.com/smithy-lang/smithy-rs/issues/4177): Remove `allow(...)` once the issue is addressed.
49                // When generating code for tests (e.g., `codegen-client-test`), this manual implementation
50                // of the `Default` trait may appear as if it could be derived automatically.
51                // However, that is not the case in production.
52                #[allow(clippy::derivable_impls)]
53                impl Default for DefaultAuthSchemeResolver {
54                    fn default() -> Self {
55                        Self {
56                            service_defaults: vec![::aws_smithy_runtime_api::client::auth::AuthSchemeOption::builder()
57            .scheme_id(::aws_runtime::auth::sigv4::SCHEME_ID)
58            
59            .build()
60            .expect("required fields set")],
61                            operation_overrides: [
62    ("AssumeRoleWithSAML", vec![::aws_smithy_runtime_api::client::auth::AuthSchemeOption::builder()
63                .scheme_id(::aws_runtime::auth::sigv4::SCHEME_ID)
64                
65                .build()
66                .expect("required fields set")
67    , ::aws_smithy_runtime_api::client::auth::AuthSchemeOption::from(::aws_smithy_runtime::client::auth::no_auth::NO_AUTH_SCHEME_ID)])
68    ,
69    ("AssumeRoleWithWebIdentity", vec![::aws_smithy_runtime_api::client::auth::AuthSchemeOption::builder()
70                .scheme_id(::aws_runtime::auth::sigv4::SCHEME_ID)
71                
72                .build()
73                .expect("required fields set")
74    , ::aws_smithy_runtime_api::client::auth::AuthSchemeOption::from(::aws_smithy_runtime::client::auth::no_auth::NO_AUTH_SCHEME_ID)])
75    ,
76]
77.into(),
78                        }
79                    }
80                }
81
82                impl crate::config::auth::ResolveAuthScheme for DefaultAuthSchemeResolver {
83                    fn resolve_auth_scheme<'a>(
84                        &'a self,
85                        params: &'a crate::config::auth::Params,
86                        _cfg: &'a ::aws_smithy_types::config_bag::ConfigBag,
87                        _runtime_components: &'a ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponents,
88                    ) -> ::aws_smithy_runtime_api::client::auth::AuthSchemeOptionsFuture<'a> {
89                        let operation_name = params.operation_name();
90
91                        let modeled_auth_options = match self.operation_overrides.get(operation_name) {
92                            Some(overrides) => overrides,
93                            None => &self.service_defaults,
94                        };
95
96                        let _fut = ::aws_smithy_runtime_api::client::auth::AuthSchemeOptionsFuture::ready(Ok(modeled_auth_options.clone()));
97
98                        
99
100                        _fut
101                    }
102                }
103
104/// Configuration parameters for resolving the correct auth scheme
105#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
106pub struct Params {
107    operation_name: ::std::borrow::Cow<'static, str>
108}
109impl Params {
110    /// Create a builder for [`Params`]
111                    pub fn builder() -> crate::config::auth::ParamsBuilder {
112                        crate::config::auth::ParamsBuilder::default()
113                    }
114    
115                    /// Return the operation name for [`Params`]
116                    pub fn operation_name(&self) -> &str {
117                        self.operation_name.as_ref()
118                    }
119}
120
121#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
122/// Builder for [`Params`]
123pub struct ParamsBuilder {
124    operation_name: ::std::option::Option<::std::borrow::Cow<'static, str>>,
125}
126impl ParamsBuilder {
127    /// Set the operation name for the builder
128                    pub fn operation_name(self, operation_name: impl Into<::std::borrow::Cow<'static, str>>) -> Self {
129                        self.set_operation_name(::std::option::Option::Some(operation_name.into()))
130                    }
131    
132                    /// Set the operation name for the builder
133                    pub fn set_operation_name(mut self, operation_name: ::std::option::Option<::std::borrow::Cow<'static, str>>) -> Self {
134                        self.operation_name = operation_name;
135                        self
136                    }
137    /// Consume this builder, create [`Params`]."
138    /// 
139    /// Return [`BuildError`] if any of the required fields are unset.
140    /// 
141    pub fn build(self) -> ::std::result::Result<crate::config::auth::Params, crate::config::auth::BuildError> {
142        ::std::result::Result::Ok(crate::config::auth::Params {
143                                operation_name: self.operation_name
144                                    .ok_or_else(||BuildError::missing("operation_name"))?
145                            })
146    }
147}
148
149/// An error that occurred while constructing `config::auth::Params`
150                #[derive(Debug)]
151                pub struct BuildError {
152                    field: ::std::borrow::Cow<'static, str>
153                }
154
155                impl BuildError {
156                    fn missing(field: &'static str) -> Self {
157                        Self { field: field.into() }
158                    }
159                }
160
161                impl std::fmt::Display for BuildError {
162                    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
163                        write!(f, "a required field was missing: `{}`", self.field)
164                    }
165                }
166
167                impl std::error::Error for BuildError { }
168