Skip to main content

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