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