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