Skip to main content

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