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