Skip to main content

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