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