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