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