aws_sdk_sts/config.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#![allow(clippy::empty_line_after_doc_comments)]
3/// Configuration for a aws_sdk_sts service client.
4///
5/// Service configuration allows for customization of endpoints, region, credentials providers,
6/// and retry configuration. Generally, it is constructed automatically for you from a shared
7/// configuration loaded by the `aws-config` crate. For example:
8///
9/// ```ignore
10/// // Load a shared config from the environment
11/// let shared_config = aws_config::from_env().load().await;
12/// // The client constructor automatically converts the shared config into the service config
13/// let client = Client::new(&shared_config);
14/// ```
15///
16/// The service config can also be constructed manually using its builder.
17///
18#[derive(::std::clone::Clone, ::std::fmt::Debug)]
19pub struct Config {
20 // Both `config` and `cloneable` are the same config, but the cloneable one
21 // is kept around so that it is possible to convert back into a builder. This can be
22 // optimized in the future.
23 pub(crate) config: crate::config::FrozenLayer,
24 cloneable: ::aws_smithy_types::config_bag::CloneableLayer,
25 pub(crate) runtime_components: crate::config::RuntimeComponentsBuilder,
26 pub(crate) runtime_plugins: ::std::vec::Vec<crate::config::SharedRuntimePlugin>,
27 pub(crate) behavior_version: ::std::option::Option<crate::config::BehaviorVersion>,
28}
29impl Config {
30 ///
31 /// Constructs a config builder.
32 /// <div class="warning">
33 /// Note that a config created from this builder will not have the same safe defaults as one created by
34 /// the <a href="https://crates.io/crates/aws-config" target="_blank">aws-config</a> crate.
35 /// </div>
36 ///
37 pub fn builder() -> Builder {
38 Builder::default()
39 }
40 /// Converts this config back into a builder so that it can be tweaked.
41 pub fn to_builder(&self) -> Builder {
42 Builder {
43 config: self.cloneable.clone(),
44 runtime_components: self.runtime_components.clone(),
45 runtime_plugins: self.runtime_plugins.clone(),
46 behavior_version: self.behavior_version,
47 }
48 }
49 /// Return a reference to the stalled stream protection configuration contained in this config, if any.
50 pub fn stalled_stream_protection(&self) -> ::std::option::Option<&crate::config::StalledStreamProtectionConfig> {
51 self.config.load::<crate::config::StalledStreamProtectionConfig>()
52 }
53 /// Return the [`SharedHttpClient`](crate::config::SharedHttpClient) to use when making requests, if any.
54 pub fn http_client(&self) -> Option<crate::config::SharedHttpClient> {
55 self.runtime_components.http_client()
56 }
57 /// Return the auth schemes configured on this service config
58 pub fn auth_schemes(&self) -> impl Iterator<Item = ::aws_smithy_runtime_api::client::auth::SharedAuthScheme> + '_ {
59 self.runtime_components.auth_schemes()
60 }
61
62 /// Return the auth scheme resolver configured on this service config
63 pub fn auth_scheme_resolver(&self) -> ::std::option::Option<::aws_smithy_runtime_api::client::auth::SharedAuthSchemeOptionResolver> {
64 self.runtime_components.auth_scheme_option_resolver()
65 }
66 /// Returns the configured auth scheme preference
67 pub fn auth_scheme_preference(&self) -> ::std::option::Option<&::aws_smithy_runtime_api::client::auth::AuthSchemePreference> {
68 self.config.load::<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>()
69 }
70 /// Returns the endpoint resolver.
71 pub fn endpoint_resolver(&self) -> ::aws_smithy_runtime_api::client::endpoint::SharedEndpointResolver {
72 self.runtime_components.endpoint_resolver().expect("resolver defaulted if not set")
73 }
74 /// Return a reference to the retry configuration contained in this config, if any.
75 pub fn retry_config(&self) -> ::std::option::Option<&::aws_smithy_types::retry::RetryConfig> {
76 self.config.load::<::aws_smithy_types::retry::RetryConfig>()
77 }
78
79 /// Return a cloned shared async sleep implementation from this config, if any.
80 pub fn sleep_impl(&self) -> ::std::option::Option<crate::config::SharedAsyncSleep> {
81 self.runtime_components.sleep_impl()
82 }
83
84 /// Return a reference to the timeout configuration contained in this config, if any.
85 pub fn timeout_config(&self) -> ::std::option::Option<&::aws_smithy_types::timeout::TimeoutConfig> {
86 self.config.load::<::aws_smithy_types::timeout::TimeoutConfig>()
87 }
88
89 /// Returns a reference to the retry partition contained in this config, if any.
90 ///
91 /// WARNING: This method is unstable and may be removed at any time. Do not rely on this
92 /// method for anything!
93 pub fn retry_partition(&self) -> ::std::option::Option<&::aws_smithy_runtime::client::retries::RetryPartition> {
94 self.config.load::<::aws_smithy_runtime::client::retries::RetryPartition>()
95 }
96 /// Returns the configured identity cache for auth.
97 pub fn identity_cache(&self) -> ::std::option::Option<crate::config::SharedIdentityCache> {
98 self.runtime_components.identity_cache()
99 }
100 /// Returns interceptors currently registered by the user.
101 pub fn interceptors(&self) -> impl Iterator<Item = crate::config::SharedInterceptor> + '_ {
102 self.runtime_components.interceptors()
103 }
104 /// Return time source used for this service.
105 pub fn time_source(&self) -> ::std::option::Option<::aws_smithy_async::time::SharedTimeSource> {
106 self.runtime_components.time_source()
107 }
108 /// Returns retry classifiers currently registered by the user.
109 pub fn retry_classifiers(&self) -> impl Iterator<Item = ::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier> + '_ {
110 self.runtime_components.retry_classifiers()
111 }
112 /// Returns the name of the app that is using the client, if it was provided.
113 ///
114 /// This _optional_ name is used to identify the application in the user agent that
115 /// gets sent along with requests.
116 pub fn app_name(&self) -> ::std::option::Option<&::aws_types::app_name::AppName> {
117 self.config.load::<::aws_types::app_name::AppName>()
118 }
119 /// Returns the framework metadata that has been configured, if any.
120 ///
121 /// This _optional_ metadata identifies software frameworks or third-party libraries
122 /// being used with the client, rendered into the user agent as `lib/{name}/{version}`.
123 /// Entries are returned in first-seen (insertion) order, matching the order they are
124 /// rendered into the user agent.
125 pub fn framework_metadata(&self) -> ::std::vec::Vec<&::aws_types::sdk_ua_metadata::FrameworkMetadata> {
126 // `StoreAppend` loads entries newest-first; reverse to first-seen order so
127 // this getter agrees with both the user agent and `SdkConfig::framework_metadata`.
128 let mut entries: ::std::vec::Vec<&::aws_types::sdk_ua_metadata::FrameworkMetadata> =
129 self.config.load::<::aws_types::sdk_ua_metadata::FrameworkMetadata>().collect();
130 entries.reverse();
131 entries
132 }
133 /// Returns the invocation ID generator if one was given in config.
134 ///
135 /// The invocation ID generator generates ID values for the `amz-sdk-invocation-id` header. By default, this will be a random UUID. Overriding it may be useful in tests that examine the HTTP request and need to be deterministic.
136 pub fn invocation_id_generator(&self) -> ::std::option::Option<::aws_runtime::invocation_id::SharedInvocationIdGenerator> {
137 self.config.load::<::aws_runtime::invocation_id::SharedInvocationIdGenerator>().cloned()
138 }
139 /// Creates a new [service config](crate::Config) from a [shared `config`](::aws_types::sdk_config::SdkConfig).
140 pub fn new(config: &::aws_types::sdk_config::SdkConfig) -> Self {
141 Builder::from(config).build()
142 }
143 /// The signature version 4 service signing name to use in the credential scope when signing requests.
144 ///
145 /// The signing service may be overridden by the `Endpoint`, or by specifying a custom
146 /// [`SigningName`](aws_types::SigningName) during operation construction
147 pub fn signing_name(&self) -> &'static str {
148 "sts"
149 }
150 /// Returns the SigV4a signing region set, if configured.
151 pub fn sigv4a_signing_region_set(&self) -> Option<&::aws_types::region::SigningRegionSet> {
152 self.config.load::<::aws_types::region::SigningRegionSet>()
153 }
154 /// Returns the AWS region, if it was provided.
155 pub fn region(&self) -> ::std::option::Option<&crate::config::Region> {
156 self.config.load::<crate::config::Region>()
157 }
158 /// This function was intended to be removed, and has been broken since release-2023-11-15 as it always returns a `None`. Do not use.
159 #[deprecated(
160 note = "This function was intended to be removed, and has been broken since release-2023-11-15 as it always returns a `None`. Do not use."
161 )]
162 pub fn credentials_provider(&self) -> Option<crate::config::SharedCredentialsProvider> {
163 ::std::option::Option::None
164 }
165}
166/// Builder for creating a `Config`.
167#[derive(::std::clone::Clone, ::std::fmt::Debug)]
168pub struct Builder {
169 pub(crate) config: ::aws_smithy_types::config_bag::CloneableLayer,
170 pub(crate) runtime_components: crate::config::RuntimeComponentsBuilder,
171 pub(crate) runtime_plugins: ::std::vec::Vec<crate::config::SharedRuntimePlugin>,
172 pub(crate) behavior_version: ::std::option::Option<crate::config::BehaviorVersion>,
173}
174impl ::std::default::Default for Builder {
175 fn default() -> Self {
176 Self {
177 config: ::std::default::Default::default(),
178 runtime_components: crate::config::RuntimeComponentsBuilder::new("service config"),
179 runtime_plugins: ::std::default::Default::default(),
180 behavior_version: ::std::default::Default::default(),
181 }
182 }
183}
184impl Builder {
185 ///
186 /// Constructs a config builder.
187 /// <div class="warning">
188 /// Note that a config created from this builder will not have the same safe defaults as one created by
189 /// the <a href="https://crates.io/crates/aws-config" target="_blank">aws-config</a> crate.
190 /// </div>
191 ///
192 pub fn new() -> Self {
193 Self::default()
194 }
195 /// Constructs a config builder from the given `config_bag`, setting only fields stored in the config bag,
196 /// but not those in runtime components.
197 #[allow(unused)]
198 pub(crate) fn from_config_bag(config_bag: &::aws_smithy_types::config_bag::ConfigBag) -> Self {
199 let mut builder = Self::new();
200 builder.set_stalled_stream_protection(config_bag.load::<crate::config::StalledStreamProtectionConfig>().cloned());
201 builder.set_auth_scheme_preference(config_bag.load::<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>().cloned());
202 builder.set_retry_config(config_bag.load::<::aws_smithy_types::retry::RetryConfig>().cloned());
203 builder.set_timeout_config(config_bag.load::<::aws_smithy_types::timeout::TimeoutConfig>().cloned());
204 builder.set_retry_partition(config_bag.load::<::aws_smithy_runtime::client::retries::RetryPartition>().cloned());
205 builder.set_app_name(config_bag.load::<::aws_types::app_name::AppName>().cloned());
206 for framework_metadata in config_bag.load::<::aws_types::sdk_ua_metadata::FrameworkMetadata>() {
207 builder.push_framework_metadata(framework_metadata.clone());
208 }
209 builder.set_endpoint_url(config_bag.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()));
210 builder.set_use_dual_stack(config_bag.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0));
211 builder.set_use_fips(config_bag.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0));
212 builder.set_sigv4a_signing_region_set(config_bag.load::<::aws_types::region::SigningRegionSet>().cloned());
213 builder.set_region(config_bag.load::<crate::config::Region>().cloned());
214 builder
215 }
216 /// Set the [`StalledStreamProtectionConfig`](crate::config::StalledStreamProtectionConfig)
217 /// to configure protection for stalled streams.
218 pub fn stalled_stream_protection(mut self, stalled_stream_protection_config: crate::config::StalledStreamProtectionConfig) -> Self {
219 self.set_stalled_stream_protection(::std::option::Option::Some(stalled_stream_protection_config));
220 self
221 }
222 /// Set the [`StalledStreamProtectionConfig`](crate::config::StalledStreamProtectionConfig)
223 /// to configure protection for stalled streams.
224 pub fn set_stalled_stream_protection(
225 &mut self,
226 stalled_stream_protection_config: ::std::option::Option<crate::config::StalledStreamProtectionConfig>,
227 ) -> &mut Self {
228 self.config.store_or_unset(stalled_stream_protection_config);
229 self
230 }
231 /// Sets the HTTP client to use when making requests.
232 ///
233 /// # Examples
234 /// ```no_run
235 /// # #[cfg(test)]
236 /// # mod tests {
237 /// # #[test]
238 /// # fn example() {
239 /// use std::time::Duration;
240 /// use aws_sdk_sts::config::Config;
241 /// use aws_smithy_runtime::client::http::hyper_014::HyperClientBuilder;
242 ///
243 /// let https_connector = hyper_rustls::HttpsConnectorBuilder::new()
244 /// .with_webpki_roots()
245 /// .https_only()
246 /// .enable_http1()
247 /// .enable_http2()
248 /// .build();
249 /// let hyper_client = HyperClientBuilder::new().build(https_connector);
250 ///
251 /// // This connector can then be given to a generated service Config
252 /// let config = my_service_client::Config::builder()
253 /// .endpoint_url("https://example.com")
254 /// .http_client(hyper_client)
255 /// .build();
256 /// let client = my_service_client::Client::from_conf(config);
257 /// # }
258 /// # }
259 /// ```
260 pub fn http_client(mut self, http_client: impl crate::config::HttpClient + 'static) -> Self {
261 self.set_http_client(::std::option::Option::Some(crate::config::IntoShared::into_shared(http_client)));
262 self
263 }
264
265 /// Sets the HTTP client to use when making requests.
266 ///
267 /// # Examples
268 /// ```no_run
269 /// # #[cfg(test)]
270 /// # mod tests {
271 /// # #[test]
272 /// # fn example() {
273 /// use std::time::Duration;
274 /// use aws_sdk_sts::config::{Builder, Config};
275 /// use aws_smithy_runtime::client::http::hyper_014::HyperClientBuilder;
276 ///
277 /// fn override_http_client(builder: &mut Builder) {
278 /// let https_connector = hyper_rustls::HttpsConnectorBuilder::new()
279 /// .with_webpki_roots()
280 /// .https_only()
281 /// .enable_http1()
282 /// .enable_http2()
283 /// .build();
284 /// let hyper_client = HyperClientBuilder::new().build(https_connector);
285 /// builder.set_http_client(Some(hyper_client));
286 /// }
287 ///
288 /// let mut builder = aws_sdk_sts::Config::builder();
289 /// override_http_client(&mut builder);
290 /// let config = builder.build();
291 /// # }
292 /// # }
293 /// ```
294 pub fn set_http_client(&mut self, http_client: Option<crate::config::SharedHttpClient>) -> &mut Self {
295 self.runtime_components.set_http_client(http_client);
296 self
297 }
298 /// Adds an auth scheme to the builder
299 ///
300 /// If `auth_scheme` has an existing [AuthSchemeId](aws_smithy_runtime_api::client::auth::AuthSchemeId) in the runtime, the current identity
301 /// resolver and signer for that scheme will be replaced by those from `auth_scheme`.
302 ///
303 /// _Important:_ When introducing a custom auth scheme, ensure you override either
304 /// [`Self::auth_scheme_resolver`] or [`Self::set_auth_scheme_resolver`]
305 /// so that the custom auth scheme is included in the list of resolved auth scheme options.
306 /// [The default auth scheme resolver](crate::config::auth::DefaultAuthSchemeResolver) will not recognize your custom auth scheme.
307 ///
308 /// # Examples
309 /// ```no_run
310 /// # use aws_smithy_runtime_api::{
311 /// # box_error::BoxError,
312 /// # client::{
313 /// # auth::{
314 /// # AuthScheme, AuthSchemeEndpointConfig, AuthSchemeId, AuthSchemeOption,
315 /// # AuthSchemeOptionsFuture, Sign,
316 /// # },
317 /// # identity::{Identity, IdentityFuture, ResolveIdentity, SharedIdentityResolver},
318 /// # orchestrator::HttpRequest,
319 /// # runtime_components::{GetIdentityResolver, RuntimeComponents},
320 /// # },
321 /// # shared::IntoShared,
322 /// # };
323 /// # use aws_smithy_types::config_bag::ConfigBag;
324 /// // Auth scheme with customer identity resolver and signer
325 /// #[derive(Debug)]
326 /// struct CustomAuthScheme {
327 /// id: AuthSchemeId,
328 /// identity_resolver: SharedIdentityResolver,
329 /// signer: CustomSigner,
330 /// }
331 /// impl Default for CustomAuthScheme {
332 /// fn default() -> Self {
333 /// Self {
334 /// id: AuthSchemeId::new("custom"),
335 /// identity_resolver: CustomIdentityResolver.into_shared(),
336 /// signer: CustomSigner,
337 /// }
338 /// }
339 /// }
340 /// impl AuthScheme for CustomAuthScheme {
341 /// fn scheme_id(&self) -> AuthSchemeId {
342 /// self.id.clone()
343 /// }
344 /// fn identity_resolver(
345 /// &self,
346 /// _identity_resolvers: &dyn GetIdentityResolver,
347 /// ) -> Option<SharedIdentityResolver> {
348 /// Some(self.identity_resolver.clone())
349 /// }
350 /// fn signer(&self) -> &dyn Sign {
351 /// &self.signer
352 /// }
353 /// }
354 ///
355 /// #[derive(Debug, Default)]
356 /// struct CustomSigner;
357 /// impl Sign for CustomSigner {
358 /// fn sign_http_request(
359 /// &self,
360 /// _request: &mut HttpRequest,
361 /// _identity: &Identity,
362 /// _auth_scheme_endpoint_config: AuthSchemeEndpointConfig<'_>,
363 /// _runtime_components: &RuntimeComponents,
364 /// _config_bag: &ConfigBag,
365 /// ) -> Result<(), BoxError> {
366 /// // --snip--
367 /// # todo!()
368 /// }
369 /// }
370 ///
371 /// #[derive(Debug)]
372 /// struct CustomIdentityResolver;
373 /// impl ResolveIdentity for CustomIdentityResolver {
374 /// fn resolve_identity<'a>(
375 /// &'a self,
376 /// _runtime_components: &'a RuntimeComponents,
377 /// _config_bag: &'a ConfigBag,
378 /// ) -> IdentityFuture<'a> {
379 /// // --snip--
380 /// # todo!()
381 /// }
382 /// }
383 ///
384 /// // Auth scheme resolver that favors `CustomAuthScheme`
385 /// #[derive(Debug)]
386 /// struct CustomAuthSchemeResolver;
387 /// impl aws_sdk_sts::config::auth::ResolveAuthScheme for CustomAuthSchemeResolver {
388 /// fn resolve_auth_scheme<'a>(
389 /// &'a self,
390 /// _params: &'a aws_sdk_sts::config::auth::Params,
391 /// _cfg: &'a ConfigBag,
392 /// _runtime_components: &'a RuntimeComponents,
393 /// ) -> AuthSchemeOptionsFuture<'a> {
394 /// AuthSchemeOptionsFuture::ready(Ok(vec![AuthSchemeOption::from(AuthSchemeId::new(
395 /// "custom",
396 /// ))]))
397 /// }
398 /// }
399 ///
400 /// let config = aws_sdk_sts::Config::builder()
401 /// .push_auth_scheme(CustomAuthScheme::default())
402 /// .auth_scheme_resolver(CustomAuthSchemeResolver)
403 /// // other configurations
404 /// .build();
405 /// ```
406 pub fn push_auth_scheme(mut self, auth_scheme: impl ::aws_smithy_runtime_api::client::auth::AuthScheme + 'static) -> Self {
407 self.runtime_components.push_auth_scheme(auth_scheme);
408 self
409 }
410
411 /// Set the auth scheme resolver for the builder
412 ///
413 /// # Examples
414 /// ```no_run
415 /// # use aws_smithy_runtime_api::{
416 /// # client::{
417 /// # auth::AuthSchemeOptionsFuture,
418 /// # runtime_components::RuntimeComponents,
419 /// # },
420 /// # };
421 /// # use aws_smithy_types::config_bag::ConfigBag;
422 /// #[derive(Debug)]
423 /// struct CustomAuthSchemeResolver;
424 /// impl aws_sdk_sts::config::auth::ResolveAuthScheme for CustomAuthSchemeResolver {
425 /// fn resolve_auth_scheme<'a>(
426 /// &'a self,
427 /// _params: &'a aws_sdk_sts::config::auth::Params,
428 /// _cfg: &'a ConfigBag,
429 /// _runtime_components: &'a RuntimeComponents,
430 /// ) -> AuthSchemeOptionsFuture<'a> {
431 /// // --snip--
432 /// # todo!()
433 /// }
434 /// }
435 ///
436 /// let config = aws_sdk_sts::Config::builder()
437 /// .auth_scheme_resolver(CustomAuthSchemeResolver)
438 /// // other configurations
439 /// .build();
440 /// ```
441 pub fn auth_scheme_resolver(mut self, auth_scheme_resolver: impl crate::config::auth::ResolveAuthScheme + 'static) -> Self {
442 self.set_auth_scheme_resolver(auth_scheme_resolver);
443 self
444 }
445
446 /// Set the auth scheme resolver for the builder
447 ///
448 /// # Examples
449 /// See an example for [`Self::auth_scheme_resolver`].
450 pub fn set_auth_scheme_resolver(&mut self, auth_scheme_resolver: impl crate::config::auth::ResolveAuthScheme + 'static) -> &mut Self {
451 self.runtime_components
452 .set_auth_scheme_option_resolver(::std::option::Option::Some(auth_scheme_resolver.into_shared_resolver()));
453 self
454 }
455
456 /// Enable no authentication regardless of what authentication mechanisms operations support
457 ///
458 /// This adds [NoAuthScheme](aws_smithy_runtime::client::auth::no_auth::NoAuthScheme) as a fallback
459 /// and the auth scheme resolver will use it when no other auth schemes are applicable.
460 pub fn allow_no_auth(mut self) -> Self {
461 self.set_allow_no_auth();
462 self
463 }
464
465 /// Enable no authentication regardless of what authentication mechanisms operations support
466 ///
467 /// This adds [NoAuthScheme](aws_smithy_runtime::client::auth::no_auth::NoAuthScheme) as a fallback
468 /// and the auth scheme resolver will use it when no other auth schemes are applicable.
469 pub fn set_allow_no_auth(&mut self) -> &mut Self {
470 self.push_runtime_plugin(::aws_smithy_runtime::client::auth::no_auth::NoAuthRuntimePluginV2::new().into_shared());
471 self
472 }
473 /// Set the auth scheme preference for an auth scheme resolver
474 /// (typically the default auth scheme resolver).
475 ///
476 /// Each operation has a predefined order of auth schemes, as determined by the service,
477 /// for auth scheme resolution. By using the auth scheme preference, customers
478 /// can reorder the schemes resolved by the auth scheme resolver.
479 ///
480 /// The preference list is intended as a hint rather than a strict override.
481 /// Any schemes not present in the originally resolved auth schemes will be ignored.
482 ///
483 /// # Examples
484 ///
485 /// ```no_run
486 /// # use aws_smithy_runtime_api::client::auth::AuthSchemeId;
487 /// let config = aws_sdk_sts::Config::builder()
488 /// .auth_scheme_preference([AuthSchemeId::from("scheme1"), AuthSchemeId::from("scheme2")])
489 /// // ...
490 /// .build();
491 /// let client = aws_sdk_sts::Client::from_conf(config);
492 /// ```
493
494 pub fn auth_scheme_preference(
495 mut self,
496 preference: impl ::std::convert::Into<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>,
497 ) -> Self {
498 self.set_auth_scheme_preference(::std::option::Option::Some(preference.into()));
499 self
500 }
501
502 /// Set the auth scheme preference for an auth scheme resolver
503 /// (typically the default auth scheme resolver).
504 ///
505 /// Each operation has a predefined order of auth schemes, as determined by the service,
506 /// for auth scheme resolution. By using the auth scheme preference, customers
507 /// can reorder the schemes resolved by the auth scheme resolver.
508 ///
509 /// The preference list is intended as a hint rather than a strict override.
510 /// Any schemes not present in the originally resolved auth schemes will be ignored.
511 ///
512 /// # Examples
513 ///
514 /// ```no_run
515 /// # use aws_smithy_runtime_api::client::auth::AuthSchemeId;
516 /// let config = aws_sdk_sts::Config::builder()
517 /// .auth_scheme_preference([AuthSchemeId::from("scheme1"), AuthSchemeId::from("scheme2")])
518 /// // ...
519 /// .build();
520 /// let client = aws_sdk_sts::Client::from_conf(config);
521 /// ```
522
523 pub fn set_auth_scheme_preference(
524 &mut self,
525 preference: ::std::option::Option<::aws_smithy_runtime_api::client::auth::AuthSchemePreference>,
526 ) -> &mut Self {
527 self.config.store_or_unset(preference);
528 self
529 }
530 /// Sets the endpoint resolver to use when making requests.
531 ///
532 ///
533 /// When unset, the client will used a generated endpoint resolver based on the endpoint resolution
534 /// rules for `aws_sdk_sts`.
535 ///
536 ///
537 /// Note: setting an endpoint resolver will replace any endpoint URL that has been set.
538 /// This method accepts an endpoint resolver [specific to this service](crate::config::endpoint::ResolveEndpoint). If you want to
539 /// provide a shared endpoint resolver, use [`Self::set_endpoint_resolver`].
540 ///
541 /// # Examples
542 /// Create a custom endpoint resolver that resolves a different endpoing per-stage, e.g. staging vs. production.
543 /// ```no_run
544 /// use aws_sdk_sts::config::endpoint::{ResolveEndpoint, EndpointFuture, Params, Endpoint};
545 /// #[derive(Debug)]
546 /// struct StageResolver { stage: String }
547 /// impl ResolveEndpoint for StageResolver {
548 /// fn resolve_endpoint(&self, params: &Params) -> EndpointFuture<'_> {
549 /// let stage = &self.stage;
550 /// EndpointFuture::ready(Ok(Endpoint::builder().url(format!("{stage}.myservice.com")).build()))
551 /// }
552 /// }
553 /// let resolver = StageResolver { stage: std::env::var("STAGE").unwrap() };
554 /// let config = aws_sdk_sts::Config::builder().endpoint_resolver(resolver).build();
555 /// let client = aws_sdk_sts::Client::from_conf(config);
556 /// ```
557 pub fn endpoint_resolver(mut self, endpoint_resolver: impl crate::config::endpoint::ResolveEndpoint + 'static) -> Self {
558 self.set_endpoint_resolver(::std::option::Option::Some(endpoint_resolver.into_shared_resolver()));
559 self
560 }
561
562 /// Sets the endpoint resolver to use when making requests.
563 ///
564 ///
565 /// When unset, the client will used a generated endpoint resolver based on the endpoint resolution
566 /// rules for `aws_sdk_sts`.
567 ///
568 pub fn set_endpoint_resolver(
569 &mut self,
570 endpoint_resolver: ::std::option::Option<::aws_smithy_runtime_api::client::endpoint::SharedEndpointResolver>,
571 ) -> &mut Self {
572 self.runtime_components.set_endpoint_resolver(endpoint_resolver);
573 self
574 }
575 /// Set the retry_config for the builder
576 ///
577 /// # Examples
578 /// ```no_run
579 /// use aws_sdk_sts::config::Config;
580 /// use aws_sdk_sts::config::retry::RetryConfig;
581 ///
582 /// let retry_config = RetryConfig::standard().with_max_attempts(5);
583 /// let config = Config::builder().retry_config(retry_config).build();
584 /// ```
585 pub fn retry_config(mut self, retry_config: ::aws_smithy_types::retry::RetryConfig) -> Self {
586 self.set_retry_config(Some(retry_config));
587 self
588 }
589
590 /// Set the retry_config for the builder
591 ///
592 /// # Examples
593 /// ```no_run
594 /// use aws_sdk_sts::config::{Builder, Config};
595 /// use aws_sdk_sts::config::retry::RetryConfig;
596 ///
597 /// fn disable_retries(builder: &mut Builder) {
598 /// let retry_config = RetryConfig::standard().with_max_attempts(1);
599 /// builder.set_retry_config(Some(retry_config));
600 /// }
601 ///
602 /// let mut builder = Config::builder();
603 /// disable_retries(&mut builder);
604 /// let config = builder.build();
605 /// ```
606 pub fn set_retry_config(&mut self, retry_config: ::std::option::Option<::aws_smithy_types::retry::RetryConfig>) -> &mut Self {
607 retry_config.map(|r| self.config.store_put(r));
608 self
609 }
610 /// Set the sleep_impl for the builder
611 ///
612 /// # Examples
613 ///
614 /// ```no_run
615 /// use aws_sdk_sts::config::{AsyncSleep, Config, SharedAsyncSleep, Sleep};
616 ///
617 /// #[derive(Debug)]
618 /// pub struct ForeverSleep;
619 ///
620 /// impl AsyncSleep for ForeverSleep {
621 /// fn sleep(&self, duration: std::time::Duration) -> Sleep {
622 /// Sleep::new(std::future::pending())
623 /// }
624 /// }
625 ///
626 /// let sleep_impl = SharedAsyncSleep::new(ForeverSleep);
627 /// let config = Config::builder().sleep_impl(sleep_impl).build();
628 /// ```
629 pub fn sleep_impl(mut self, sleep_impl: impl crate::config::AsyncSleep + 'static) -> Self {
630 self.set_sleep_impl(Some(::aws_smithy_runtime_api::shared::IntoShared::into_shared(sleep_impl)));
631 self
632 }
633
634 /// Set the sleep_impl for the builder
635 ///
636 /// # Examples
637 ///
638 /// ```no_run
639 /// use aws_sdk_sts::config::{AsyncSleep, Builder, Config, SharedAsyncSleep, Sleep};
640 ///
641 /// #[derive(Debug)]
642 /// pub struct ForeverSleep;
643 ///
644 /// impl AsyncSleep for ForeverSleep {
645 /// fn sleep(&self, duration: std::time::Duration) -> Sleep {
646 /// Sleep::new(std::future::pending())
647 /// }
648 /// }
649 ///
650 /// fn set_never_ending_sleep_impl(builder: &mut Builder) {
651 /// let sleep_impl = SharedAsyncSleep::new(ForeverSleep);
652 /// builder.set_sleep_impl(Some(sleep_impl));
653 /// }
654 ///
655 /// let mut builder = Config::builder();
656 /// set_never_ending_sleep_impl(&mut builder);
657 /// let config = builder.build();
658 /// ```
659 pub fn set_sleep_impl(&mut self, sleep_impl: ::std::option::Option<crate::config::SharedAsyncSleep>) -> &mut Self {
660 self.runtime_components.set_sleep_impl(sleep_impl);
661 self
662 }
663 /// Set the timeout_config for the builder
664 ///
665 /// # Examples
666 ///
667 /// ```no_run
668 /// # use std::time::Duration;
669 /// use aws_sdk_sts::config::Config;
670 /// use aws_sdk_sts::config::timeout::TimeoutConfig;
671 ///
672 /// let timeout_config = TimeoutConfig::builder()
673 /// .operation_attempt_timeout(Duration::from_secs(1))
674 /// .build();
675 /// let config = Config::builder().timeout_config(timeout_config).build();
676 /// ```
677 pub fn timeout_config(mut self, timeout_config: ::aws_smithy_types::timeout::TimeoutConfig) -> Self {
678 self.set_timeout_config(Some(timeout_config));
679 self
680 }
681
682 /// Set the timeout_config for the builder.
683 ///
684 /// Setting this to `None` has no effect if another source of configuration has set timeouts. If you
685 /// are attempting to disable timeouts, use [`TimeoutConfig::disabled`](::aws_smithy_types::timeout::TimeoutConfig::disabled)
686 ///
687 ///
688 /// # Examples
689 ///
690 /// ```no_run
691 /// # use std::time::Duration;
692 /// use aws_sdk_sts::config::{Builder, Config};
693 /// use aws_sdk_sts::config::timeout::TimeoutConfig;
694 ///
695 /// fn set_request_timeout(builder: &mut Builder) {
696 /// let timeout_config = TimeoutConfig::builder()
697 /// .operation_attempt_timeout(Duration::from_secs(1))
698 /// .build();
699 /// builder.set_timeout_config(Some(timeout_config));
700 /// }
701 ///
702 /// let mut builder = Config::builder();
703 /// set_request_timeout(&mut builder);
704 /// let config = builder.build();
705 /// ```
706 pub fn set_timeout_config(&mut self, timeout_config: ::std::option::Option<::aws_smithy_types::timeout::TimeoutConfig>) -> &mut Self {
707 // passing None has no impact.
708 let Some(mut timeout_config) = timeout_config else { return self };
709
710 if let Some(base) = self.config.load::<::aws_smithy_types::timeout::TimeoutConfig>() {
711 timeout_config.take_defaults_from(base);
712 }
713 self.config.store_put(timeout_config);
714 self
715 }
716 /// Set the partition for retry-related state. When clients share a retry partition, they will
717 /// also share components such as token buckets and client rate limiters.
718 /// See the [`RetryPartition`](::aws_smithy_runtime::client::retries::RetryPartition) documentation for more details.
719 ///
720 /// # Default Behavior
721 ///
722 /// When no retry partition is explicitly set, the SDK automatically creates a default retry partition named `sts`
723 /// (or `sts-<region>` if a region is configured).
724 /// All STS clients without an explicit retry partition will share this default partition.
725 ///
726 /// # Notes
727 ///
728 /// - This is an advanced setting — most users won't need to modify it.
729 /// - A configured client rate limiter has no effect unless [`RetryConfig::adaptive`](::aws_smithy_types::retry::RetryConfig::adaptive) is used.
730 ///
731 /// # Examples
732 ///
733 /// Creating a custom retry partition with a token bucket:
734 /// ```no_run
735 /// use aws_sdk_sts::config::Config;
736 /// use aws_sdk_sts::config::retry::{RetryPartition, TokenBucket};
737 ///
738 /// let token_bucket = TokenBucket::new(10);
739 /// let config = Config::builder()
740 /// .retry_partition(RetryPartition::custom("custom")
741 /// .token_bucket(token_bucket)
742 /// .build()
743 /// )
744 /// .build();
745 /// ```
746 ///
747 /// Configuring a client rate limiter with adaptive retry mode:
748 /// ```no_run
749 /// use aws_sdk_sts::config::Config;
750 /// use aws_sdk_sts::config::retry::{ClientRateLimiter, RetryConfig, RetryPartition};
751 ///
752 /// let client_rate_limiter = ClientRateLimiter::new(10.0);
753 /// let config = Config::builder()
754 /// .retry_partition(RetryPartition::custom("custom")
755 /// .client_rate_limiter(client_rate_limiter)
756 /// .build()
757 /// )
758 /// .retry_config(RetryConfig::adaptive())
759 /// .build();
760 /// ```
761 pub fn retry_partition(mut self, retry_partition: ::aws_smithy_runtime::client::retries::RetryPartition) -> Self {
762 self.set_retry_partition(Some(retry_partition));
763 self
764 }
765 /// Like [`Self::retry_partition`], but takes a mutable reference to the builder and an optional `RetryPartition`
766 pub fn set_retry_partition(
767 &mut self,
768 retry_partition: ::std::option::Option<::aws_smithy_runtime::client::retries::RetryPartition>,
769 ) -> &mut Self {
770 retry_partition.map(|r| self.config.store_put(r));
771 self
772 }
773 /// Set the identity cache for auth.
774 ///
775 /// The identity cache defaults to a lazy caching implementation that will resolve
776 /// an identity when it is requested, and place it in the cache thereafter. Subsequent
777 /// requests will take the value from the cache while it is still valid. Once it expires,
778 /// the next request will result in refreshing the identity.
779 ///
780 /// This configuration allows you to disable or change the default caching mechanism.
781 /// To use a custom caching mechanism, implement the [`ResolveCachedIdentity`](crate::config::ResolveCachedIdentity)
782 /// trait and pass that implementation into this function.
783 ///
784 /// # Examples
785 ///
786 /// Disabling identity caching:
787 /// ```no_run
788 /// use aws_sdk_sts::config::IdentityCache;
789 ///
790 /// let config = aws_sdk_sts::Config::builder()
791 /// .identity_cache(IdentityCache::no_cache())
792 /// // ...
793 /// .build();
794 /// let client = aws_sdk_sts::Client::from_conf(config);
795 /// ```
796 ///
797 /// Customizing lazy caching:
798 /// ```no_run
799 /// use aws_sdk_sts::config::IdentityCache;
800 /// use std::time::Duration;
801 ///
802 /// let config = aws_sdk_sts::Config::builder()
803 /// .identity_cache(
804 /// IdentityCache::lazy()
805 /// // change the load timeout to 10 seconds
806 /// .load_timeout(Duration::from_secs(10))
807 /// .build()
808 /// )
809 /// // ...
810 /// .build();
811 /// let client = aws_sdk_sts::Client::from_conf(config);
812 /// ```
813 ///
814 pub fn identity_cache(mut self, identity_cache: impl crate::config::ResolveCachedIdentity + 'static) -> Self {
815 self.set_identity_cache(identity_cache);
816 self
817 }
818
819 /// Set the identity cache for auth.
820 ///
821 /// The identity cache defaults to a lazy caching implementation that will resolve
822 /// an identity when it is requested, and place it in the cache thereafter. Subsequent
823 /// requests will take the value from the cache while it is still valid. Once it expires,
824 /// the next request will result in refreshing the identity.
825 ///
826 /// This configuration allows you to disable or change the default caching mechanism.
827 /// To use a custom caching mechanism, implement the [`ResolveCachedIdentity`](crate::config::ResolveCachedIdentity)
828 /// trait and pass that implementation into this function.
829 ///
830 /// # Examples
831 ///
832 /// Disabling identity caching:
833 /// ```no_run
834 /// use aws_sdk_sts::config::IdentityCache;
835 ///
836 /// let config = aws_sdk_sts::Config::builder()
837 /// .identity_cache(IdentityCache::no_cache())
838 /// // ...
839 /// .build();
840 /// let client = aws_sdk_sts::Client::from_conf(config);
841 /// ```
842 ///
843 /// Customizing lazy caching:
844 /// ```no_run
845 /// use aws_sdk_sts::config::IdentityCache;
846 /// use std::time::Duration;
847 ///
848 /// let config = aws_sdk_sts::Config::builder()
849 /// .identity_cache(
850 /// IdentityCache::lazy()
851 /// // change the load timeout to 10 seconds
852 /// .load_timeout(Duration::from_secs(10))
853 /// .build()
854 /// )
855 /// // ...
856 /// .build();
857 /// let client = aws_sdk_sts::Client::from_conf(config);
858 /// ```
859 ///
860 pub fn set_identity_cache(&mut self, identity_cache: impl crate::config::ResolveCachedIdentity + 'static) -> &mut Self {
861 self.runtime_components.set_identity_cache(::std::option::Option::Some(identity_cache));
862 self
863 }
864 /// Add an [interceptor](crate::config::Intercept) that runs at specific stages of the request execution pipeline.
865 ///
866 /// Interceptors targeted at a certain stage are executed according to the pre-defined priority.
867 /// The SDK provides a default set of interceptors. An interceptor configured by this method
868 /// will run after those default interceptors.
869 ///
870 /// # Examples
871 /// ```no_run
872 /// # fn example() {
873 /// use aws_smithy_runtime_api::box_error::BoxError;
874 /// use aws_smithy_runtime_api::client::interceptors::context::BeforeTransmitInterceptorContextMut;
875 /// use aws_smithy_runtime_api::client::interceptors::Intercept;
876 /// use aws_smithy_runtime_api::client::runtime_components::RuntimeComponents;
877 /// use aws_smithy_types::config_bag::ConfigBag;
878 /// use aws_sdk_sts::config::Config;
879 /// use ::http::uri::Uri;
880 ///
881 /// fn base_url() -> String {
882 /// // ...
883 /// # String::new()
884 /// }
885 ///
886 /// #[derive(Debug)]
887 /// pub struct UriModifierInterceptor;
888 /// impl Intercept for UriModifierInterceptor {
889 /// fn name(&self) -> &'static str {
890 /// "UriModifierInterceptor"
891 /// }
892 /// fn modify_before_signing(
893 /// &self,
894 /// context: &mut BeforeTransmitInterceptorContextMut<'_>,
895 /// _runtime_components: &RuntimeComponents,
896 /// _cfg: &mut ConfigBag,
897 /// ) -> Result<(), BoxError> {
898 /// let request = context.request_mut();
899 /// let uri = format!("{}{}", base_url(), request.uri());
900 /// *request.uri_mut() = uri.parse::<Uri>()?.into();
901 ///
902 /// Ok(())
903 /// }
904 /// }
905 ///
906 /// let config = Config::builder()
907 /// .interceptor(UriModifierInterceptor)
908 /// .build();
909 /// # }
910 /// ```
911 pub fn interceptor(mut self, interceptor: impl crate::config::Intercept + 'static) -> Self {
912 self.push_interceptor(crate::config::SharedInterceptor::new(interceptor));
913 self
914 }
915
916 /// Like [`Self::interceptor`], but takes a [`SharedInterceptor`](crate::config::SharedInterceptor).
917 pub fn push_interceptor(&mut self, interceptor: crate::config::SharedInterceptor) -> &mut Self {
918 self.runtime_components.push_interceptor(interceptor);
919 self
920 }
921
922 /// Set [`SharedInterceptor`](crate::config::SharedInterceptor)s for the builder.
923 pub fn set_interceptors(&mut self, interceptors: impl IntoIterator<Item = crate::config::SharedInterceptor>) -> &mut Self {
924 self.runtime_components.set_interceptors(interceptors.into_iter());
925 self
926 }
927 /// Sets the time source used for this service
928 pub fn time_source(mut self, time_source: impl ::aws_smithy_async::time::TimeSource + 'static) -> Self {
929 self.set_time_source(::std::option::Option::Some(::aws_smithy_runtime_api::shared::IntoShared::into_shared(
930 time_source,
931 )));
932 self
933 }
934 /// Sets the time source used for this service
935 pub fn set_time_source(&mut self, time_source: ::std::option::Option<::aws_smithy_async::time::SharedTimeSource>) -> &mut Self {
936 self.runtime_components.set_time_source(time_source);
937 self
938 }
939 /// Add type implementing [`ClassifyRetry`](::aws_smithy_runtime_api::client::retries::classifiers::ClassifyRetry) that will be used by the
940 /// [`RetryStrategy`](::aws_smithy_runtime_api::client::retries::RetryStrategy) to determine what responses should be retried.
941 ///
942 /// A retry classifier configured by this method will run according to its [priority](::aws_smithy_runtime_api::client::retries::classifiers::RetryClassifierPriority).
943 ///
944 /// # Examples
945 /// ```no_run
946 /// # fn example() {
947 /// use aws_smithy_runtime_api::client::interceptors::context::InterceptorContext;
948 /// use aws_smithy_runtime_api::client::orchestrator::OrchestratorError;
949 /// use aws_smithy_runtime_api::client::retries::classifiers::{
950 /// ClassifyRetry, RetryAction, RetryClassifierPriority,
951 /// };
952 /// use aws_smithy_types::error::metadata::ProvideErrorMetadata;
953 /// use aws_smithy_types::retry::ErrorKind;
954 /// use std::error::Error as StdError;
955 /// use std::marker::PhantomData;
956 /// use std::fmt;
957 /// use aws_sdk_sts::config::Config;
958 /// # #[derive(Debug)]
959 /// # struct SomeOperationError {}
960 /// # impl StdError for SomeOperationError {}
961 /// # impl fmt::Display for SomeOperationError {
962 /// # fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { todo!() }
963 /// # }
964 /// # impl ProvideErrorMetadata for SomeOperationError {
965 /// # fn meta(&self) -> &aws_sdk_sts::error::ErrorMetadata { todo!() }
966 /// # }
967 ///
968 /// const RETRYABLE_ERROR_CODES: &[&str] = &[
969 /// // List error codes to be retried here...
970 /// ];
971 ///
972 /// // When classifying at an operation's error type, classifiers require a generic parameter.
973 /// // When classifying the HTTP response alone, no generic is needed.
974 /// #[derive(Debug, Default)]
975 /// pub struct ExampleErrorCodeClassifier<E> {
976 /// _inner: PhantomData<E>,
977 /// }
978 ///
979 /// impl<E> ExampleErrorCodeClassifier<E> {
980 /// pub fn new() -> Self {
981 /// Self {
982 /// _inner: PhantomData,
983 /// }
984 /// }
985 /// }
986 ///
987 /// impl<E> ClassifyRetry for ExampleErrorCodeClassifier<E>
988 /// where
989 /// // Adding a trait bound for ProvideErrorMetadata allows us to inspect the error code.
990 /// E: StdError + ProvideErrorMetadata + Send + Sync + 'static,
991 /// {
992 /// fn classify_retry(&self, ctx: &InterceptorContext) -> RetryAction {
993 /// // Check for a result
994 /// let output_or_error = ctx.output_or_error();
995 /// // Check for an error
996 /// let error = match output_or_error {
997 /// Some(Ok(_)) | None => return RetryAction::NoActionIndicated,
998 /// Some(Err(err)) => err,
999 /// };
1000 ///
1001 /// // Downcast the generic error and extract the code
1002 /// let error_code = OrchestratorError::as_operation_error(error)
1003 /// .and_then(|err| err.downcast_ref::<E>())
1004 /// .and_then(|err| err.code());
1005 ///
1006 /// // If this error's code is in our list, return an action that tells the RetryStrategy to retry this request.
1007 /// if let Some(error_code) = error_code {
1008 /// if RETRYABLE_ERROR_CODES.contains(&error_code) {
1009 /// return RetryAction::transient_error();
1010 /// }
1011 /// }
1012 ///
1013 /// // Otherwise, return that no action is indicated i.e. that this classifier doesn't require a retry.
1014 /// // Another classifier may still classify this response as retryable.
1015 /// RetryAction::NoActionIndicated
1016 /// }
1017 ///
1018 /// fn name(&self) -> &'static str { "Example Error Code Classifier" }
1019 /// }
1020 ///
1021 /// let config = Config::builder()
1022 /// .retry_classifier(ExampleErrorCodeClassifier::<SomeOperationError>::new())
1023 /// .build();
1024 /// # }
1025 /// ```
1026 pub fn retry_classifier(
1027 mut self,
1028 retry_classifier: impl ::aws_smithy_runtime_api::client::retries::classifiers::ClassifyRetry + 'static,
1029 ) -> Self {
1030 self.push_retry_classifier(::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier::new(
1031 retry_classifier,
1032 ));
1033 self
1034 }
1035
1036 /// Like [`Self::retry_classifier`], but takes a [`SharedRetryClassifier`](::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier).
1037 pub fn push_retry_classifier(
1038 &mut self,
1039 retry_classifier: ::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier,
1040 ) -> &mut Self {
1041 self.runtime_components.push_retry_classifier(retry_classifier);
1042 self
1043 }
1044
1045 /// Set [`SharedRetryClassifier`](::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier)s for the builder, replacing any that
1046 /// were previously set.
1047 pub fn set_retry_classifiers(
1048 &mut self,
1049 retry_classifiers: impl IntoIterator<Item = ::aws_smithy_runtime_api::client::retries::classifiers::SharedRetryClassifier>,
1050 ) -> &mut Self {
1051 self.runtime_components.set_retry_classifiers(retry_classifiers.into_iter());
1052 self
1053 }
1054 /// Sets the name of the app that is using the client.
1055 ///
1056 /// This _optional_ name is used to identify the application in the user agent that
1057 /// gets sent along with requests.
1058 pub fn app_name(mut self, app_name: ::aws_types::app_name::AppName) -> Self {
1059 self.set_app_name(Some(app_name));
1060 self
1061 }
1062 /// Sets the name of the app that is using the client.
1063 ///
1064 /// This _optional_ name is used to identify the application in the user agent that
1065 /// gets sent along with requests.
1066 pub fn set_app_name(&mut self, app_name: ::std::option::Option<::aws_types::app_name::AppName>) -> &mut Self {
1067 self.config.store_or_unset(app_name);
1068 self
1069 }
1070 /// Appends framework metadata to the user agent.
1071 ///
1072 /// This _optional_ metadata identifies a software framework or third-party library
1073 /// that is being used with the client. It is rendered into the user agent string
1074 /// (as `lib/{name}/{version}`) so that libraries built on top of the AWS SDK can
1075 /// self-identify in the requests they make. Multiple entries may be added; each call
1076 /// appends another entry rather than replacing previous ones.
1077 ///
1078 /// Entries are de-duplicated on `(name, version)`, rendered in first-seen order, and
1079 /// the total number of unique entries included in the user agent is capped (currently
1080 /// at 10); additional entries beyond the cap are dropped with a warning.
1081 pub fn framework_metadata(mut self, framework_metadata: ::aws_types::sdk_ua_metadata::FrameworkMetadata) -> Self {
1082 self.push_framework_metadata(framework_metadata);
1083 self
1084 }
1085 /// Appends framework metadata to the user agent.
1086 ///
1087 /// This _optional_ metadata identifies a software framework or third-party library
1088 /// that is being used with the client. It is rendered into the user agent string
1089 /// (as `lib/{name}/{version}`) so that libraries built on top of the AWS SDK can
1090 /// self-identify in the requests they make. Multiple entries may be added; each call
1091 /// appends another entry rather than replacing previous ones.
1092 pub fn push_framework_metadata(&mut self, framework_metadata: ::aws_types::sdk_ua_metadata::FrameworkMetadata) -> &mut Self {
1093 self.config.store_append(framework_metadata);
1094 self
1095 }
1096 /// Overrides the default invocation ID generator.
1097 ///
1098 /// The invocation ID generator generates ID values for the `amz-sdk-invocation-id` header. By default, this will be a random UUID. Overriding it may be useful in tests that examine the HTTP request and need to be deterministic.
1099 pub fn invocation_id_generator(mut self, gen: impl ::aws_runtime::invocation_id::InvocationIdGenerator + 'static) -> Self {
1100 self.set_invocation_id_generator(::std::option::Option::Some(
1101 ::aws_runtime::invocation_id::SharedInvocationIdGenerator::new(gen),
1102 ));
1103 self
1104 }
1105 /// Overrides the default invocation ID generator.
1106 ///
1107 /// The invocation ID generator generates ID values for the `amz-sdk-invocation-id` header. By default, this will be a random UUID. Overriding it may be useful in tests that examine the HTTP request and need to be deterministic.
1108 pub fn set_invocation_id_generator(
1109 &mut self,
1110 gen: ::std::option::Option<::aws_runtime::invocation_id::SharedInvocationIdGenerator>,
1111 ) -> &mut Self {
1112 self.config.store_or_unset(gen);
1113 self
1114 }
1115 /// Sets the endpoint URL used to communicate with this service.
1116 ///
1117 /// Note: this is used in combination with other endpoint rules, e.g. an API that applies a host-label prefix
1118 /// will be prefixed onto this URL. To fully override the endpoint resolver, use
1119 /// [`Builder::endpoint_resolver`].
1120 pub fn endpoint_url(mut self, endpoint_url: impl Into<::std::string::String>) -> Self {
1121 self.set_endpoint_url(Some(endpoint_url.into()));
1122 self
1123 }
1124 /// Sets the endpoint URL used to communicate with this service.
1125 ///
1126 /// Note: this is used in combination with other endpoint rules, e.g. an API that applies a host-label prefix
1127 /// will be prefixed onto this URL. To fully override the endpoint resolver, use
1128 /// [`Builder::endpoint_resolver`].
1129 pub fn set_endpoint_url(&mut self, endpoint_url: Option<::std::string::String>) -> &mut Self {
1130 self.config.store_or_unset(endpoint_url.map(::aws_types::endpoint_config::EndpointUrl));
1131 self
1132 }
1133 /// When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
1134 pub fn use_dual_stack(mut self, use_dual_stack: impl Into<bool>) -> Self {
1135 self.set_use_dual_stack(Some(use_dual_stack.into()));
1136 self
1137 }
1138 /// When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
1139 pub fn set_use_dual_stack(&mut self, use_dual_stack: Option<bool>) -> &mut Self {
1140 self.config.store_or_unset(use_dual_stack.map(::aws_types::endpoint_config::UseDualStack));
1141 self
1142 }
1143 /// When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
1144 pub fn use_fips(mut self, use_fips: impl Into<bool>) -> Self {
1145 self.set_use_fips(Some(use_fips.into()));
1146 self
1147 }
1148 /// When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
1149 pub fn set_use_fips(&mut self, use_fips: Option<bool>) -> &mut Self {
1150 self.config.store_or_unset(use_fips.map(::aws_types::endpoint_config::UseFips));
1151 self
1152 }
1153 /// Sets the SigV4a signing region set.
1154 pub fn sigv4a_signing_region_set(mut self, v: impl Into<::aws_types::region::SigningRegionSet>) -> Self {
1155 self.set_sigv4a_signing_region_set(Some(v.into()));
1156 self
1157 }
1158
1159 /// Sets the SigV4a signing region set.
1160 pub fn set_sigv4a_signing_region_set(&mut self, v: Option<::aws_types::region::SigningRegionSet>) -> &mut Self {
1161 self.config.store_or_unset(v);
1162 self
1163 }
1164 /// Sets the AWS region to use when making requests.
1165 ///
1166 /// # Examples
1167 /// ```no_run
1168 /// use aws_types::region::Region;
1169 /// use aws_sdk_sts::config::{Builder, Config};
1170 ///
1171 /// let config = aws_sdk_sts::Config::builder()
1172 /// .region(Region::new("us-east-1"))
1173 /// .build();
1174 /// ```
1175 pub fn region(mut self, region: impl ::std::convert::Into<::std::option::Option<crate::config::Region>>) -> Self {
1176 self.set_region(region.into());
1177 self
1178 }
1179 /// Sets the AWS region to use when making requests.
1180 pub fn set_region(&mut self, region: ::std::option::Option<crate::config::Region>) -> &mut Self {
1181 self.config.store_or_unset(region);
1182 self
1183 }
1184 /// Sets the credentials provider for this service
1185 pub fn credentials_provider(mut self, credentials_provider: impl crate::config::ProvideCredentials + 'static) -> Self {
1186 self.set_credentials_provider(::std::option::Option::Some(crate::config::SharedCredentialsProvider::new(
1187 credentials_provider,
1188 )));
1189 self
1190 }
1191 /// Sets the credentials provider for this service
1192 pub fn set_credentials_provider(&mut self, credentials_provider: ::std::option::Option<crate::config::SharedCredentialsProvider>) -> &mut Self {
1193 if let Some(credentials_provider) = credentials_provider {
1194 #[cfg(feature = "sigv4a")]
1195 {
1196 self.runtime_components
1197 .set_identity_resolver(::aws_runtime::auth::sigv4a::SCHEME_ID, credentials_provider.clone());
1198 }
1199 self.runtime_components
1200 .set_identity_resolver(::aws_runtime::auth::sigv4::SCHEME_ID, credentials_provider);
1201 }
1202 self
1203 }
1204 /// Sets the [`behavior major version`](crate::config::BehaviorVersion).
1205 ///
1206 /// Over time, new best-practice behaviors are introduced. However, these behaviors might not be backwards
1207 /// compatible. For example, a change which introduces new default timeouts or a new retry-mode for
1208 /// all operations might be the ideal behavior but could break existing applications.
1209 ///
1210 /// # Examples
1211 ///
1212 /// Set the behavior major version to `latest`. This is equivalent to enabling the `behavior-version-latest` cargo feature.
1213 /// ```no_run
1214 /// use aws_sdk_sts::config::BehaviorVersion;
1215 ///
1216 /// let config = aws_sdk_sts::Config::builder()
1217 /// .behavior_version(BehaviorVersion::latest())
1218 /// // ...
1219 /// .build();
1220 /// let client = aws_sdk_sts::Client::from_conf(config);
1221 /// ```
1222 ///
1223 /// Customizing behavior major version:
1224 /// ```no_run
1225 /// use aws_sdk_sts::config::BehaviorVersion;
1226 ///
1227 /// let config = aws_sdk_sts::Config::builder()
1228 /// .behavior_version(BehaviorVersion::v2023_11_09())
1229 /// // ...
1230 /// .build();
1231 /// let client = aws_sdk_sts::Client::from_conf(config);
1232 /// ```
1233 ///
1234 pub fn behavior_version(mut self, behavior_version: crate::config::BehaviorVersion) -> Self {
1235 self.set_behavior_version(Some(behavior_version));
1236 self
1237 }
1238
1239 /// Sets the [`behavior major version`](crate::config::BehaviorVersion).
1240 ///
1241 /// Over time, new best-practice behaviors are introduced. However, these behaviors might not be backwards
1242 /// compatible. For example, a change which introduces new default timeouts or a new retry-mode for
1243 /// all operations might be the ideal behavior but could break existing applications.
1244 ///
1245 /// # Examples
1246 ///
1247 /// Set the behavior major version to `latest`. This is equivalent to enabling the `behavior-version-latest` cargo feature.
1248 /// ```no_run
1249 /// use aws_sdk_sts::config::BehaviorVersion;
1250 ///
1251 /// let config = aws_sdk_sts::Config::builder()
1252 /// .behavior_version(BehaviorVersion::latest())
1253 /// // ...
1254 /// .build();
1255 /// let client = aws_sdk_sts::Client::from_conf(config);
1256 /// ```
1257 ///
1258 /// Customizing behavior major version:
1259 /// ```no_run
1260 /// use aws_sdk_sts::config::BehaviorVersion;
1261 ///
1262 /// let config = aws_sdk_sts::Config::builder()
1263 /// .behavior_version(BehaviorVersion::v2023_11_09())
1264 /// // ...
1265 /// .build();
1266 /// let client = aws_sdk_sts::Client::from_conf(config);
1267 /// ```
1268 ///
1269 pub fn set_behavior_version(&mut self, behavior_version: Option<crate::config::BehaviorVersion>) -> &mut Self {
1270 self.behavior_version = behavior_version;
1271 self
1272 }
1273
1274 /// Convenience method to set the latest behavior major version
1275 ///
1276 /// This is equivalent to enabling the `behavior-version-latest` Cargo feature
1277 pub fn behavior_version_latest(mut self) -> Self {
1278 self.set_behavior_version(Some(crate::config::BehaviorVersion::latest()));
1279 self
1280 }
1281 /// Adds a runtime plugin to the config.
1282 #[allow(unused)]
1283 pub(crate) fn runtime_plugin(mut self, plugin: impl crate::config::RuntimePlugin + 'static) -> Self {
1284 self.push_runtime_plugin(crate::config::SharedRuntimePlugin::new(plugin));
1285 self
1286 }
1287 /// Adds a runtime plugin to the config.
1288 #[allow(unused)]
1289 pub(crate) fn push_runtime_plugin(&mut self, plugin: crate::config::SharedRuntimePlugin) -> &mut Self {
1290 self.runtime_plugins.push(plugin);
1291 self
1292 }
1293 #[cfg(any(feature = "test-util", test))]
1294 #[allow(unused_mut)]
1295 /// Apply test defaults to the builder. NOTE: Consider migrating to use `apply_test_defaults_v2` instead.
1296 pub fn apply_test_defaults(&mut self) -> &mut Self {
1297 self.set_time_source(::std::option::Option::Some(::aws_smithy_async::time::SharedTimeSource::new(
1298 ::aws_smithy_async::time::StaticTimeSource::new(::std::time::UNIX_EPOCH + ::std::time::Duration::from_secs(1234567890)),
1299 )));
1300 self.config.store_put(::aws_runtime::user_agent::AwsUserAgent::for_tests());
1301 self.set_credentials_provider(Some(crate::config::SharedCredentialsProvider::new(
1302 ::aws_credential_types::Credentials::for_tests(),
1303 )));
1304 self.behavior_version = ::std::option::Option::Some(crate::config::BehaviorVersion::latest());
1305 self
1306 }
1307 #[cfg(any(feature = "test-util", test))]
1308 #[allow(unused_mut)]
1309 /// Apply test defaults to the builder. NOTE: Consider migrating to use `with_test_defaults_v2` instead.
1310 pub fn with_test_defaults(mut self) -> Self {
1311 self.apply_test_defaults();
1312 self
1313 }
1314 #[cfg(any(feature = "test-util", test))]
1315 #[allow(unused_mut)]
1316 /// Apply test defaults to the builder. V2 of this function sets additional test defaults such as region configuration (if applicable).
1317 pub fn apply_test_defaults_v2(&mut self) -> &mut Self {
1318 self.apply_test_defaults();
1319 if self.config.load::<crate::config::Region>().is_none() {
1320 self.set_region(::std::option::Option::Some(crate::config::Region::new("us-east-1")));
1321 }
1322 self
1323 }
1324 #[cfg(any(feature = "test-util", test))]
1325 #[allow(unused_mut)]
1326 /// Apply test defaults to the builder. V2 of this function sets additional test defaults such as region configuration (if applicable).
1327 pub fn with_test_defaults_v2(mut self) -> Self {
1328 self.apply_test_defaults_v2();
1329 self
1330 }
1331 /// Builds a [`Config`].
1332 #[allow(unused_mut)]
1333 pub fn build(mut self) -> Config {
1334 let mut layer = self.config;
1335 if self.runtime_components.time_source().is_none() {
1336 self.runtime_components
1337 .set_time_source(::std::option::Option::Some(::std::default::Default::default()));
1338 }
1339 layer.store_put(crate::meta::API_METADATA.clone());
1340 layer.store_put(::aws_types::SigningName::from_static("sts"));
1341 layer
1342 .load::<::aws_types::region::Region>()
1343 .cloned()
1344 .map(|r| layer.store_put(::aws_types::region::SigningRegion::from(r)));
1345 Config {
1346 config: crate::config::Layer::from(layer.clone())
1347 .with_name("aws_sdk_sts::config::Config")
1348 .freeze(),
1349 cloneable: layer,
1350 runtime_components: self.runtime_components,
1351 runtime_plugins: self.runtime_plugins,
1352 behavior_version: self.behavior_version,
1353 }
1354 }
1355}
1356#[derive(::std::fmt::Debug)]
1357pub(crate) struct ServiceRuntimePlugin {
1358 config: ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer>,
1359 runtime_components: ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1360}
1361
1362impl ServiceRuntimePlugin {
1363 pub fn new(_service_config: crate::config::Config) -> Self {
1364 let config = {
1365 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("AWSSecurityTokenServiceV20110615");
1366 cfg.store_put(::aws_smithy_runtime::client::orchestrator::AuthSchemeAndEndpointOrchestrationV2);
1367 ::std::option::Option::Some(cfg.freeze())
1368 };
1369 let mut runtime_components = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ServiceRuntimePlugin");
1370 runtime_components.set_auth_scheme_option_resolver(::std::option::Option::Some({
1371 use crate::config::auth::ResolveAuthScheme;
1372 crate::config::auth::DefaultAuthSchemeResolver::default().into_shared_resolver()
1373 }));
1374 runtime_components.set_endpoint_resolver(::std::option::Option::Some({
1375 use crate::config::endpoint::ResolveEndpoint;
1376 crate::config::endpoint::DefaultResolver::new().into_shared_resolver()
1377 }));
1378 runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1379 ::aws_smithy_runtime::client::http::connection_poisoning::ConnectionPoisoningInterceptor::new(),
1380 ));
1381 runtime_components.push_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::HttpStatusCodeClassifier::default());
1382 runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1383 crate::sdk_feature_tracker::retry_mode::RetryModeFeatureTrackerInterceptor::new(),
1384 ));
1385 runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1386 ::aws_runtime::service_clock_skew::ServiceClockSkewInterceptor::new(),
1387 ));
1388 runtime_components.push_interceptor(::aws_runtime::request_info::RequestInfoInterceptor::new());
1389 runtime_components.push_interceptor(::aws_runtime::user_agent::UserAgentInterceptor::new());
1390 runtime_components.push_interceptor(::aws_runtime::invocation_id::InvocationIdInterceptor::new());
1391 runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1392 ::aws_runtime::recursion_detection::RecursionDetectionInterceptor::new(),
1393 ));
1394 runtime_components.push_auth_scheme(::aws_smithy_runtime_api::client::auth::SharedAuthScheme::new(
1395 ::aws_runtime::auth::sigv4::SigV4AuthScheme::new(),
1396 ));
1397 #[cfg(feature = "sigv4a")]
1398 {
1399 runtime_components.push_auth_scheme(::aws_smithy_runtime_api::client::auth::SharedAuthScheme::new(
1400 ::aws_runtime::auth::sigv4a::SigV4aAuthScheme::new(),
1401 ));
1402 }
1403 runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1404 crate::config::endpoint::EndpointOverrideFeatureTrackerInterceptor,
1405 ));
1406 runtime_components.push_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
1407 crate::observability_feature::ObservabilityFeatureTrackerInterceptor,
1408 ));
1409 Self { config, runtime_components }
1410 }
1411}
1412
1413impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ServiceRuntimePlugin {
1414 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
1415 self.config.clone()
1416 }
1417
1418 fn order(&self) -> ::aws_smithy_runtime_api::client::runtime_plugin::Order {
1419 ::aws_smithy_runtime_api::client::runtime_plugin::Order::Defaults
1420 }
1421
1422 fn runtime_components(
1423 &self,
1424 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1425 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
1426 ::std::borrow::Cow::Borrowed(&self.runtime_components)
1427 }
1428}
1429
1430// Cross-operation shared-state singletons
1431
1432/// A plugin that enables configuration for a single operation invocation
1433///
1434/// The `config` method will return a `FrozenLayer` by storing values from `config_override`.
1435/// In the case of default values requested, they will be obtained from `client_config`.
1436#[derive(Debug)]
1437pub(crate) struct ConfigOverrideRuntimePlugin {
1438 pub(crate) config: ::aws_smithy_types::config_bag::FrozenLayer,
1439 pub(crate) components: ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1440}
1441
1442impl ConfigOverrideRuntimePlugin {
1443 #[allow(dead_code)] // unused when a service does not provide any operations
1444 pub(crate) fn new(
1445 config_override: Builder,
1446 initial_config: ::aws_smithy_types::config_bag::FrozenLayer,
1447 initial_components: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1448 ) -> Self {
1449 let mut layer = config_override.config;
1450 let mut components = config_override.runtime_components;
1451 #[allow(unused_mut)]
1452 let mut resolver =
1453 ::aws_smithy_runtime::client::config_override::Resolver::overrid(initial_config, initial_components, &mut layer, &mut components);
1454
1455 resolver
1456 .config_mut()
1457 .load::<::aws_types::region::Region>()
1458 .cloned()
1459 .map(|r| resolver.config_mut().store_put(::aws_types::region::SigningRegion::from(r)));
1460
1461 let _ = resolver;
1462
1463 // When the config override supplies an identity resolver for any auth scheme
1464 // known to the client or the override itself, we give this operation its own
1465 // short-lived identity cache so that new partitions don't accumulate in the
1466 // shared client cache. A lazy cache (not `no_cache`) is used so that resolved
1467 // identities are served from the short-lived identity cache on retries.
1468 //
1469 // This is skipped if the override already sets its own identity cache.
1470 if components.has_identity_resolvers() && components.identity_cache().is_none() {
1471 components.set_identity_cache(::std::option::Option::Some(
1472 ::aws_smithy_runtime::client::identity::IdentityCache::lazy().max_partitions(1).build(),
1473 ));
1474 }
1475
1476 Self {
1477 config: ::aws_smithy_types::config_bag::Layer::from(layer)
1478 .with_name("aws_sdk_sts::config::ConfigOverrideRuntimePlugin")
1479 .freeze(),
1480 components,
1481 }
1482 }
1483}
1484
1485impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for ConfigOverrideRuntimePlugin {
1486 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
1487 Some(self.config.clone())
1488 }
1489
1490 fn runtime_components(
1491 &self,
1492 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
1493 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
1494 ::std::borrow::Cow::Borrowed(&self.components)
1495 }
1496}
1497
1498pub use ::aws_smithy_runtime::client::identity::IdentityCache;
1499pub use ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponents;
1500pub use ::aws_smithy_types::config_bag::ConfigBag;
1501
1502pub use ::aws_credential_types::Credentials;
1503
1504impl From<&::aws_types::sdk_config::SdkConfig> for Builder {
1505 fn from(input: &::aws_types::sdk_config::SdkConfig) -> Self {
1506 let mut builder = Builder::default();
1507 builder.set_credentials_provider(input.credentials_provider());
1508 builder = builder.region(input.region().cloned());
1509 builder.set_sigv4a_signing_region_set(input.sigv4a_signing_region_set().cloned());
1510 builder.set_use_fips(input.use_fips());
1511 builder.set_use_dual_stack(input.use_dual_stack());
1512 if input.get_origin("endpoint_url").is_client_config() {
1513 builder.set_endpoint_url(input.endpoint_url().map(|s| s.to_string()));
1514 } else {
1515 builder.set_endpoint_url(
1516 input
1517 .service_config()
1518 .and_then(|conf| {
1519 conf.load_config(service_config_key("STS", "AWS_ENDPOINT_URL", "endpoint_url"))
1520 .map(|it| it.parse().unwrap())
1521 })
1522 .or_else(|| input.endpoint_url().map(|s| s.to_string())),
1523 );
1524 }
1525 // resiliency
1526 builder.set_retry_config(input.retry_config().cloned());
1527 builder.set_timeout_config(input.timeout_config().cloned());
1528 builder.set_sleep_impl(input.sleep_impl());
1529
1530 builder.set_http_client(input.http_client());
1531 builder.set_time_source(input.time_source());
1532 builder.set_behavior_version(input.behavior_version());
1533 builder.set_auth_scheme_preference(input.auth_scheme_preference().cloned());
1534 // setting `None` here removes the default
1535 if let Some(config) = input.stalled_stream_protection() {
1536 builder.set_stalled_stream_protection(Some(config));
1537 }
1538
1539 if let Some(cache) = input.identity_cache() {
1540 builder.set_identity_cache(cache);
1541 }
1542 builder.set_app_name(input.app_name().cloned());
1543 for framework_metadata in input.framework_metadata() {
1544 builder.push_framework_metadata(framework_metadata.clone());
1545 }
1546
1547 builder
1548 }
1549}
1550
1551impl From<&::aws_types::sdk_config::SdkConfig> for Config {
1552 fn from(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
1553 Builder::from(sdk_config).build()
1554 }
1555}
1556
1557pub use ::aws_types::app_name::AppName;
1558pub use ::aws_types::sdk_ua_metadata::FrameworkMetadata;
1559
1560#[allow(dead_code)]
1561fn service_config_key<'a>(service_id: &'a str, env: &'a str, profile: &'a str) -> aws_types::service_config::ServiceConfigKey<'a> {
1562 ::aws_types::service_config::ServiceConfigKey::builder()
1563 .service_id(service_id)
1564 .env(env)
1565 .profile(profile)
1566 .build()
1567 .expect("all field sets explicitly, can't fail")
1568}
1569
1570pub use ::aws_smithy_async::rt::sleep::Sleep;
1571
1572pub(crate) fn base_client_runtime_plugins(mut config: crate::Config) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
1573 let mut configured_plugins = ::std::vec::Vec::new();
1574 ::std::mem::swap(&mut config.runtime_plugins, &mut configured_plugins);
1575 #[cfg(feature = "behavior-version-latest")]
1576 {
1577 if config.behavior_version.is_none() {
1578 config.behavior_version = Some(::aws_smithy_runtime_api::client::behavior_version::BehaviorVersion::latest());
1579 }
1580 }
1581
1582 let default_retry_partition = "sts";
1583 let default_retry_partition = match config.region() {
1584 Some(region) => ::std::borrow::Cow::from(format!("{default_retry_partition}-{region}")),
1585 None => ::std::borrow::Cow::from(default_retry_partition),
1586 };
1587
1588 let scope = "aws-sdk-sts";
1589
1590 #[allow(deprecated)]
1591 let mut plugins = ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins::new()
1592 // defaults
1593 .with_client_plugins(::aws_smithy_runtime::client::defaults::default_plugins(
1594 ::aws_smithy_runtime::client::defaults::DefaultPluginParams::new()
1595 .with_retry_partition_name(default_retry_partition)
1596 .with_behavior_version(config.behavior_version.expect("Invalid client configuration: A behavior major version must be set when sending a request or constructing a client. You must set it during client construction or by enabling the `behavior-version-latest` cargo feature."))
1597 .with_is_aws_sdk(true)
1598 ))
1599 // user config
1600 .with_client_plugin(
1601 ::aws_smithy_runtime_api::client::runtime_plugin::StaticRuntimePlugin::new()
1602 .with_config(config.config.clone())
1603 .with_runtime_components(config.runtime_components.clone())
1604 )
1605 // codegen config
1606 .with_client_plugin(crate::config::ServiceRuntimePlugin::new(config.clone()))
1607 .with_client_plugin(::aws_smithy_runtime::client::auth::no_auth::NoAuthRuntimePlugin::new())
1608 .with_client_plugin(
1609 ::aws_smithy_runtime::client::metrics::MetricsRuntimePlugin::builder()
1610 .with_scope(scope)
1611 .with_time_source(config.runtime_components.time_source().unwrap_or_default())
1612 .build()
1613 .expect("All required fields have been set")
1614 );
1615
1616 for plugin in configured_plugins {
1617 plugins = plugins.with_client_plugin(plugin);
1618 }
1619 plugins
1620}
1621
1622pub use ::aws_smithy_types::config_bag::FrozenLayer;
1623
1624pub use ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder;
1625
1626pub use ::aws_smithy_runtime_api::client::runtime_plugin::SharedRuntimePlugin;
1627
1628pub use ::aws_smithy_runtime_api::client::behavior_version::BehaviorVersion;
1629
1630pub use ::aws_smithy_runtime_api::client::stalled_stream_protection::StalledStreamProtectionConfig;
1631
1632pub use ::aws_smithy_runtime_api::client::http::SharedHttpClient;
1633
1634pub use ::aws_smithy_async::rt::sleep::SharedAsyncSleep;
1635
1636pub use ::aws_smithy_runtime_api::client::identity::SharedIdentityCache;
1637
1638pub use ::aws_smithy_runtime_api::client::interceptors::SharedInterceptor;
1639
1640pub use ::aws_types::region::Region;
1641
1642pub use ::aws_credential_types::provider::SharedCredentialsProvider;
1643
1644pub use ::aws_smithy_runtime_api::client::http::HttpClient;
1645
1646pub use ::aws_smithy_runtime_api::shared::IntoShared;
1647
1648pub use ::aws_smithy_async::rt::sleep::AsyncSleep;
1649
1650pub use ::aws_smithy_runtime_api::client::identity::ResolveCachedIdentity;
1651
1652pub use ::aws_smithy_runtime_api::client::interceptors::Intercept;
1653
1654pub use ::aws_credential_types::provider::ProvideCredentials;
1655
1656pub use ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin;
1657
1658pub use ::aws_smithy_types::config_bag::Layer;
1659
1660/// Types needed to configure endpoint resolution.
1661pub mod endpoint;
1662
1663/// HTTP request and response types.
1664pub mod http;
1665
1666/// Types needed to implement [`Intercept`](crate::config::Intercept).
1667pub mod interceptors;
1668
1669/// Retry configuration.
1670pub mod retry;
1671
1672/// Timeout configuration.
1673pub mod timeout;
1674
1675/// Types needed to configure auth scheme resolution.
1676pub mod auth;