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