aws_sdk_config/client.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2#[derive(Debug)]
3pub(crate) struct Handle {
4 pub(crate) conf: crate::Config,
5 #[allow(dead_code)] // unused when a service does not provide any operations
6 pub(crate) runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
7}
8
9/// Client for AWS Config
10///
11/// Client for invoking operations on AWS Config. Each operation on AWS Config is a method on this
12/// this struct. `.send()` MUST be invoked on the generated operations to dispatch the request to the service.
13/// ## Constructing a `Client`
14///
15/// A [`Config`] is required to construct a client. For most use cases, the [`aws-config`]
16/// crate should be used to automatically resolve this config using
17/// [`aws_config::load_from_env()`], since this will resolve an [`SdkConfig`] which can be shared
18/// across multiple different AWS SDK clients. This config resolution process can be customized
19/// by calling [`aws_config::from_env()`] instead, which returns a [`ConfigLoader`] that uses
20/// the [builder pattern] to customize the default config.
21///
22/// In the simplest case, creating a client looks as follows:
23/// ```rust,no_run
24/// # async fn wrapper() {
25/// let config = aws_config::load_from_env().await;
26/// let client = aws_sdk_config::Client::new(&config);
27/// # }
28/// ```
29///
30/// Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
31/// is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
32/// The [`Builder`](crate::config::Builder) struct implements `From<&SdkConfig>`, so setting these specific settings can be
33/// done as follows:
34///
35/// ```rust,no_run
36/// # async fn wrapper() {
37/// let sdk_config = ::aws_config::load_from_env().await;
38/// let config = aws_sdk_config::config::Builder::from(&sdk_config)
39/// # /*
40/// .some_service_specific_setting("value")
41/// # */
42/// .build();
43/// # }
44/// ```
45///
46/// See the [`aws-config` docs] and [`Config`] for more information on customizing configuration.
47///
48/// _Note:_ Client construction is expensive due to connection thread pool initialization, and should
49/// be done once at application start-up.
50///
51/// [`Config`]: crate::Config
52/// [`ConfigLoader`]: https://docs.rs/aws-config/*/aws_config/struct.ConfigLoader.html
53/// [`SdkConfig`]: https://docs.rs/aws-config/*/aws_config/struct.SdkConfig.html
54/// [`aws-config` docs]: https://docs.rs/aws-config/*
55/// [`aws-config`]: https://crates.io/crates/aws-config
56/// [`aws_config::from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.from_env.html
57/// [`aws_config::load_from_env()`]: https://docs.rs/aws-config/*/aws_config/fn.load_from_env.html
58/// [builder pattern]: https://rust-lang.github.io/api-guidelines/type-safety.html#builders-enable-construction-of-complex-values-c-builder
59/// # Using the `Client`
60///
61/// A client has a function for every operation that can be performed by the service.
62/// For example, the [`AssociateResourceTypes`](crate::operation::associate_resource_types) operation has
63/// a [`Client::associate_resource_types`], function which returns a builder for that operation.
64/// The fluent builder ultimately has a `send()` function that returns an async future that
65/// returns a result, as illustrated below:
66///
67/// ```rust,ignore
68/// let result = client.associate_resource_types()
69/// .configuration_recorder_arn("example")
70/// .send()
71/// .await;
72/// ```
73///
74/// The underlying HTTP requests that get made by this can be modified with the `customize_operation`
75/// function on the fluent builder. See the [`customize`](crate::client::customize) module for more
76/// information.
77#[derive(::std::clone::Clone, ::std::fmt::Debug)]
78pub struct Client {
79 handle: ::std::sync::Arc<Handle>,
80}
81
82impl Client {
83 /// Creates a new client from the service [`Config`](crate::Config).
84 ///
85 /// # Panics
86 ///
87 /// This method will panic in the following cases:
88 ///
89 /// - Retries or timeouts are enabled without a `sleep_impl` configured.
90 /// - Identity caching is enabled without a `sleep_impl` and `time_source` configured.
91 /// - No `behavior_version` is provided.
92 ///
93 /// The panic message for each of these will have instructions on how to resolve them.
94 #[track_caller]
95 pub fn from_conf(conf: crate::Config) -> Self {
96 let handle = Handle {
97 conf: conf.clone(),
98 runtime_plugins: crate::config::base_client_runtime_plugins(conf),
99 };
100 if let Err(err) = Self::validate_config(&handle) {
101 panic!("Invalid client configuration: {err}");
102 }
103 Self {
104 handle: ::std::sync::Arc::new(handle),
105 }
106 }
107
108 /// Returns the client's configuration.
109 pub fn config(&self) -> &crate::Config {
110 &self.handle.conf
111 }
112
113 fn validate_config(handle: &Handle) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
114 let mut cfg = ::aws_smithy_types::config_bag::ConfigBag::base();
115 handle
116 .runtime_plugins
117 .apply_client_configuration(&mut cfg)?
118 .validate_base_client_config(&cfg)?;
119 Ok(())
120 }
121}
122
123impl Client {
124 /// Creates a new client from an [SDK Config](::aws_types::sdk_config::SdkConfig).
125 ///
126 /// # Panics
127 ///
128 /// - This method will panic if the `sdk_config` is missing an async sleep implementation. If you experience this panic, set
129 /// the `sleep_impl` on the Config passed into this function to fix it.
130 /// - This method will panic if the `sdk_config` is missing an HTTP connector. If you experience this panic, set the
131 /// `http_connector` on the Config passed into this function to fix it.
132 /// - This method will panic if no `BehaviorVersion` is provided. If you experience this panic, set `behavior_version` on the Config or enable the `behavior-version-latest` Cargo feature.
133 #[track_caller]
134 pub fn new(sdk_config: &::aws_types::sdk_config::SdkConfig) -> Self {
135 Self::from_conf(sdk_config.into())
136 }
137}
138
139mod associate_resource_types;
140
141mod batch_get_aggregate_resource_config;
142
143mod batch_get_resource_config;
144
145/// Operation customization and supporting types.
146///
147/// The underlying HTTP requests made during an operation can be customized
148/// by calling the `customize()` method on the builder returned from a client
149/// operation call. For example, this can be used to add an additional HTTP header:
150///
151/// ```ignore
152/// # async fn wrapper() -> ::std::result::Result<(), aws_sdk_config::Error> {
153/// # let client: aws_sdk_config::Client = unimplemented!();
154/// use ::http::header::{HeaderName, HeaderValue};
155///
156/// let result = client.associate_resource_types()
157/// .customize()
158/// .mutate_request(|req| {
159/// // Add `x-example-header` with value
160/// req.headers_mut()
161/// .insert(
162/// HeaderName::from_static("x-example-header"),
163/// HeaderValue::from_static("1"),
164/// );
165/// })
166/// .send()
167/// .await;
168/// # }
169/// ```
170pub mod customize;
171
172mod delete_aggregation_authorization;
173
174mod delete_config_rule;
175
176mod delete_configuration_aggregator;
177
178mod delete_configuration_recorder;
179
180mod delete_conformance_pack;
181
182mod delete_delivery_channel;
183
184mod delete_evaluation_results;
185
186mod delete_organization_config_rule;
187
188mod delete_organization_conformance_pack;
189
190mod delete_pending_aggregation_request;
191
192mod delete_remediation_configuration;
193
194mod delete_remediation_exceptions;
195
196mod delete_resource_config;
197
198mod delete_retention_configuration;
199
200mod delete_service_linked_configuration_recorder;
201
202mod delete_stored_query;
203
204mod deliver_config_snapshot;
205
206mod describe_aggregate_compliance_by_config_rules;
207
208mod describe_aggregate_compliance_by_conformance_packs;
209
210mod describe_aggregation_authorizations;
211
212mod describe_compliance_by_config_rule;
213
214mod describe_compliance_by_resource;
215
216mod describe_config_rule_evaluation_status;
217
218mod describe_config_rules;
219
220mod describe_configuration_aggregator_sources_status;
221
222mod describe_configuration_aggregators;
223
224mod describe_configuration_recorder_status;
225
226mod describe_configuration_recorders;
227
228mod describe_conformance_pack_compliance;
229
230mod describe_conformance_pack_status;
231
232mod describe_conformance_packs;
233
234mod describe_delivery_channel_status;
235
236mod describe_delivery_channels;
237
238mod describe_organization_config_rule_statuses;
239
240mod describe_organization_config_rules;
241
242mod describe_organization_conformance_pack_statuses;
243
244mod describe_organization_conformance_packs;
245
246mod describe_pending_aggregation_requests;
247
248mod describe_remediation_configurations;
249
250mod describe_remediation_exceptions;
251
252mod describe_remediation_execution_status;
253
254mod describe_retention_configurations;
255
256mod disassociate_resource_types;
257
258mod get_aggregate_compliance_details_by_config_rule;
259
260mod get_aggregate_config_rule_compliance_summary;
261
262mod get_aggregate_conformance_pack_compliance_summary;
263
264mod get_aggregate_discovered_resource_counts;
265
266mod get_aggregate_resource_config;
267
268mod get_compliance_details_by_config_rule;
269
270mod get_compliance_details_by_resource;
271
272mod get_compliance_summary_by_config_rule;
273
274mod get_compliance_summary_by_resource_type;
275
276mod get_conformance_pack_compliance_details;
277
278mod get_conformance_pack_compliance_summary;
279
280mod get_custom_rule_policy;
281
282mod get_discovered_resource_counts;
283
284mod get_organization_config_rule_detailed_status;
285
286mod get_organization_conformance_pack_detailed_status;
287
288mod get_organization_custom_rule_policy;
289
290mod get_resource_config_history;
291
292mod get_resource_evaluation_summary;
293
294mod get_stored_query;
295
296mod list_aggregate_discovered_resources;
297
298mod list_configuration_recorders;
299
300mod list_conformance_pack_compliance_scores;
301
302mod list_discovered_resources;
303
304mod list_resource_evaluations;
305
306mod list_stored_queries;
307
308mod list_tags_for_resource;
309
310mod put_aggregation_authorization;
311
312mod put_config_rule;
313
314mod put_configuration_aggregator;
315
316mod put_configuration_recorder;
317
318mod put_conformance_pack;
319
320mod put_delivery_channel;
321
322mod put_evaluations;
323
324mod put_external_evaluation;
325
326mod put_organization_config_rule;
327
328mod put_organization_conformance_pack;
329
330mod put_remediation_configurations;
331
332mod put_remediation_exceptions;
333
334mod put_resource_config;
335
336mod put_retention_configuration;
337
338mod put_service_linked_configuration_recorder;
339
340mod put_stored_query;
341
342mod select_aggregate_resource_config;
343
344mod select_resource_config;
345
346mod start_config_rules_evaluation;
347
348mod start_configuration_recorder;
349
350mod start_remediation_execution;
351
352mod start_resource_evaluation;
353
354mod stop_configuration_recorder;
355
356mod tag_resource;
357
358mod untag_resource;