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