1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct DeleteObjects;
6impl DeleteObjects {
7 pub fn new() -> Self {
9 Self
10 }
11 pub(crate) async fn orchestrate(
12 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13 input: crate::operation::delete_objects::DeleteObjectsInput,
14 ) -> ::std::result::Result<
15 crate::operation::delete_objects::DeleteObjectsOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::delete_objects::DeleteObjectsError,
18 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19 >,
20 > {
21 let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22 ::aws_smithy_runtime_api::client::interceptors::context::Error,
23 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24 >| {
25 err.map_service_error(|err| {
26 err.downcast::<crate::operation::delete_objects::DeleteObjectsError>()
27 .expect("correct error type")
28 })
29 };
30 let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
31 .await
32 .map_err(map_err)?;
33 let output = context.finalize().map_err(map_err)?;
34 ::std::result::Result::Ok(
35 output
36 .downcast::<crate::operation::delete_objects::DeleteObjectsOutput>()
37 .expect("correct output type"),
38 )
39 }
40
41 pub(crate) async fn orchestrate_with_stop_point(
42 runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
43 input: crate::operation::delete_objects::DeleteObjectsInput,
44 stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
45 ) -> ::std::result::Result<
46 ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
47 ::aws_smithy_runtime_api::client::result::SdkError<
48 ::aws_smithy_runtime_api::client::interceptors::context::Error,
49 ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
50 >,
51 > {
52 let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
53 use ::tracing::Instrument;
54 ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("S3", "DeleteObjects", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "S3.DeleteObjects",
59 "rpc.service" = "S3",
60 "rpc.method" = "DeleteObjects",
61 "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
62 "rpc.system" = "aws-api",
63 ))
64 .await
65 }
66
67 pub(crate) fn operation_runtime_plugins(
68 client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
69 client_config: &crate::config::Config,
70 config_override: ::std::option::Option<crate::config::Builder>,
71 ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
72 let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
73
74 if let ::std::option::Option::Some(config_override) = config_override {
75 for plugin in config_override.runtime_plugins.iter().cloned() {
76 runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
77 }
78 runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
79 config_override,
80 client_config.config.clone(),
81 &client_config.runtime_components,
82 ));
83 }
84 runtime_plugins
85 }
86}
87impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for DeleteObjects {
88 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("DeleteObjects");
90
91 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92 DeleteObjectsRequestSerializer,
93 ));
94 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95 DeleteObjectsResponseDeserializer,
96 ));
97
98 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99 crate::config::auth::Params::builder()
100 .operation_name("DeleteObjects")
101 .build()
102 .expect("required fields set"),
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("DeleteObjects", "S3"));
106 cfg.store_put(crate::s3_express::checksum::provide_default_checksum_algorithm());
107 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
108 signing_options.double_uri_encode = false;
109 signing_options.content_sha256_header = true;
110 signing_options.normalize_uri_path = false;
111 signing_options.payload_override = None;
112
113 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
114 signing_options,
115 ..::std::default::Default::default()
116 });
117
118 ::std::option::Option::Some(cfg.freeze())
119 }
120
121 fn runtime_components(
122 &self,
123 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
124 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
125 #[allow(unused_mut)]
126 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("DeleteObjects")
127 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
128 DeleteObjectsTelemetryInputCaptureInterceptor,
129 ))
130 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
131 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
132 ))
133 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
134 DeleteObjectsEndpointParamsInterceptor,
135 ))
136 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137 crate::http_request_checksum::RequestChecksumInterceptor::new(
138 |input: &::aws_smithy_runtime_api::client::interceptors::context::Input| {
139 let input: &crate::operation::delete_objects::DeleteObjectsInput = input.downcast_ref().expect("correct type");
140 let checksum_algorithm = input.checksum_algorithm();
141 let checksum_algorithm = checksum_algorithm.map(|algorithm| algorithm.as_str());
142 (checksum_algorithm.map(|s| s.to_string()), true)
143 },
144 |request: &mut ::aws_smithy_runtime_api::http::Request, cfg: &::aws_smithy_types::config_bag::ConfigBag| {
145 let mut user_set_checksum_value = false;
147 let headers_to_check =
148 request
149 .headers()
150 .iter()
151 .filter_map(|(name, _val)| if name.starts_with("x-amz-checksum-") { Some(name) } else { None });
152 for algo_header in headers_to_check {
153 if request.headers().get(algo_header).is_some() {
154 user_set_checksum_value = true;
155 }
156 }
157
158 let user_set_checksum_algo = request.headers().get("x-amz-sdk-checksum-algorithm").is_some();
160
161 let request_checksum_calculation = cfg
163 .load::<::aws_smithy_types::checksum_config::RequestChecksumCalculation>()
164 .unwrap_or(&::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported);
165
166 let http_checksum_required = true;
168
169 let is_presigned_req = cfg.load::<crate::presigning::PresigningMarker>().is_some();
170
171 match (
176 request_checksum_calculation,
177 http_checksum_required,
178 user_set_checksum_value,
179 user_set_checksum_algo,
180 is_presigned_req,
181 ) {
182 (_, _, _, _, true) => {}
183 (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported, _, false, false, _)
184 | (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenRequired, true, false, false, _) => {
185 request.headers_mut().insert("x-amz-sdk-checksum-algorithm", "CRC32");
186 }
187 _ => {}
188 }
189
190 Ok(user_set_checksum_value)
193 },
194 ),
195 ))
196 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
197 crate::operation::delete_objects::DeleteObjectsError,
198 >::new())
199 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
200 crate::operation::delete_objects::DeleteObjectsError,
201 >::new())
202 .with_retry_classifier(
203 ::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::delete_objects::DeleteObjectsError>::builder()
204 .transient_errors({
205 let mut transient_errors: Vec<&'static str> = ::aws_runtime::retries::classifiers::TRANSIENT_ERRORS.into();
206 transient_errors.push("InternalError");
207 ::std::borrow::Cow::Owned(transient_errors)
208 })
209 .build(),
210 )
211 .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
212 crate::operation::delete_objects::DeleteObjectsError,
213 >::new());
214
215 ::std::borrow::Cow::Owned(rcb)
216 }
217}
218
219#[derive(Debug)]
220struct DeleteObjectsTelemetryInputCaptureInterceptor;
221
222#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
223impl ::aws_smithy_runtime_api::client::interceptors::Intercept for DeleteObjectsTelemetryInputCaptureInterceptor {
224 fn name(&self) -> &'static str {
225 "DeleteObjectsTelemetryInputCaptureInterceptor"
226 }
227
228 fn read_before_execution(
229 &self,
230 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
231 '_,
232 ::aws_smithy_runtime_api::client::interceptors::context::Input,
233 ::aws_smithy_runtime_api::client::interceptors::context::Output,
234 ::aws_smithy_runtime_api::client::interceptors::context::Error,
235 >,
236 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
237 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
238 let ::std::option::Option::Some(requested) = cfg
240 .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
241 .filter(|r| !r.is_empty())
242 else {
243 return ::std::result::Result::Ok(());
244 };
245
246 let ::std::option::Option::Some(input) = context.input().downcast_ref::<DeleteObjectsInput>() else {
247 return ::std::result::Result::Ok(());
249 };
250
251 let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
252 if requested.should_capture("Bucket") {
253 if let ::std::option::Option::Some(value) = input.bucket.as_deref() {
254 captured.insert("Bucket", value);
255 }
256 }
257 if requested.should_capture("MFA") {
258 if let ::std::option::Option::Some(value) = input.mfa.as_deref() {
259 captured.insert("MFA", value);
260 }
261 }
262 if requested.should_capture("ExpectedBucketOwner") {
263 if let ::std::option::Option::Some(value) = input.expected_bucket_owner.as_deref() {
264 captured.insert("ExpectedBucketOwner", value);
265 }
266 }
267
268 cfg.interceptor_state().store_put(captured);
269 ::std::result::Result::Ok(())
270 }
271}
272#[derive(Debug)]
273struct DeleteObjectsResponseDeserializer;
274impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for DeleteObjectsResponseDeserializer {
275 fn deserialize_nonstreaming_with_config(
276 &self,
277 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
278 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
279 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
280 let (success, status) = (response.status().is_success(), response.status().as_u16());
281 let headers = response.headers();
282 let body = response.body().bytes().expect("body loaded");
283 #[allow(unused_mut)]
284 let mut force_error = false;
285 ::tracing::debug!(extended_request_id = ?crate::s3_request_id::RequestIdExt::extended_request_id(response));
286 if matches!(crate::rest_xml_unwrapped_errors::body_is_error(body), Ok(true)) {
287 force_error = true;
288 }
289 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
290 let parse_result = if !success && status != 200 || force_error {
291 crate::protocol_serde::shape_delete_objects::de_delete_objects_http_error(status, headers, body)
292 } else {
293 crate::protocol_serde::shape_delete_objects::de_delete_objects_http_response(status, headers, body)
294 };
295 crate::protocol_serde::type_erase_result(parse_result)
296 }
297}
298#[derive(Debug)]
299struct DeleteObjectsRequestSerializer;
300impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for DeleteObjectsRequestSerializer {
301 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
302 fn serialize_input(
303 &self,
304 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
305 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
306 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
307 let input = input
308 .downcast::<crate::operation::delete_objects::DeleteObjectsInput>()
309 .expect("correct type");
310 let _header_serialization_settings = _cfg
311 .load::<crate::serialization_settings::HeaderSerializationSettings>()
312 .cloned()
313 .unwrap_or_default();
314 let mut request_builder = {
315 #[allow(clippy::uninlined_format_args)]
316 fn uri_base(
317 _input: &crate::operation::delete_objects::DeleteObjectsInput,
318 output: &mut ::std::string::String,
319 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
320 use ::std::fmt::Write as _;
321 ::std::write!(output, "/").expect("formatting should succeed");
322 ::std::result::Result::Ok(())
323 }
324 fn uri_query(
325 _input: &crate::operation::delete_objects::DeleteObjectsInput,
326 mut output: &mut ::std::string::String,
327 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
328 let mut query = ::aws_smithy_http::query::Writer::new(output);
329 query.push_v("delete");
330 ::std::result::Result::Ok(())
331 }
332 #[allow(clippy::unnecessary_wraps)]
333 fn update_http_builder(
334 input: &crate::operation::delete_objects::DeleteObjectsInput,
335 builder: ::http_1x::request::Builder,
336 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
337 let mut uri = ::std::string::String::new();
338 uri_base(input, &mut uri)?;
339 uri_query(input, &mut uri)?;
340 let builder = crate::protocol_serde::shape_delete_objects::ser_delete_objects_headers(input, builder)?;
341 ::std::result::Result::Ok(builder.method("POST").uri(uri))
342 }
343 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
344 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/xml");
345 builder
346 };
347 let body =
348 ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_delete_objects_input::ser_delete_http_payload(&input.delete)?);
349 if let Some(content_length) = body.content_length() {
350 let content_length = content_length.to_string();
351 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
352 }
353 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
354 }
355}
356#[derive(Debug)]
357struct DeleteObjectsEndpointParamsInterceptor;
358
359#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
360impl ::aws_smithy_runtime_api::client::interceptors::Intercept for DeleteObjectsEndpointParamsInterceptor {
361 fn name(&self) -> &'static str {
362 "DeleteObjectsEndpointParamsInterceptor"
363 }
364
365 fn read_before_execution(
366 &self,
367 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
368 '_,
369 ::aws_smithy_runtime_api::client::interceptors::context::Input,
370 ::aws_smithy_runtime_api::client::interceptors::context::Output,
371 ::aws_smithy_runtime_api::client::interceptors::context::Error,
372 >,
373 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
374 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
375 let _input = context
376 .input()
377 .downcast_ref::<DeleteObjectsInput>()
378 .ok_or("failed to downcast to DeleteObjectsInput")?;
379
380 let params = crate::config::endpoint::Params::builder()
381 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
382 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
383 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
384 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
385 .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
386 .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
387 .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
388 .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
389 .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
390 .set_bucket(Some(
391 _input
392 .bucket
393 .clone()
394 .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
395 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
396 ))
397 .build()
398 .map_err(|err| {
399 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
400 })?;
401 cfg.interceptor_state()
402 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
403 ::std::result::Result::Ok(())
404 }
405}
406
407#[non_exhaustive]
412#[derive(::std::fmt::Debug)]
413pub enum DeleteObjectsError {
414 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
416 variable wildcard pattern and check `.code()`:
417 \
418 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
419 \
420 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-DeleteObjectsError) for what information is available for the error.")]
421 Unhandled(crate::error::sealed_unhandled::Unhandled),
422}
423impl DeleteObjectsError {
424 pub fn unhandled(
426 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
427 ) -> Self {
428 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
429 source: err.into(),
430 meta: ::std::default::Default::default(),
431 })
432 }
433
434 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
436 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
437 source: err.clone().into(),
438 meta: err,
439 })
440 }
441 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
446 match self {
447 Self::Unhandled(e) => &e.meta,
448 }
449 }
450}
451impl ::std::error::Error for DeleteObjectsError {
452 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
453 match self {
454 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
455 }
456 }
457}
458impl ::std::fmt::Display for DeleteObjectsError {
459 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
460 match self {
461 Self::Unhandled(_inner) => {
462 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
463 write!(f, "unhandled error ({code})")
464 } else {
465 f.write_str("unhandled error")
466 }
467 }
468 }
469 }
470}
471impl ::aws_smithy_types::retry::ProvideErrorKind for DeleteObjectsError {
472 fn code(&self) -> ::std::option::Option<&str> {
473 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
474 }
475 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
476 ::std::option::Option::None
477 }
478}
479impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for DeleteObjectsError {
480 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
481 match self {
482 Self::Unhandled(_inner) => &_inner.meta,
483 }
484 }
485}
486impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for DeleteObjectsError {
487 fn create_unhandled_error(
488 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
489 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
490 ) -> Self {
491 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
492 source,
493 meta: meta.unwrap_or_default(),
494 })
495 }
496}
497impl crate::s3_request_id::RequestIdExt for crate::operation::delete_objects::DeleteObjectsError {
498 fn extended_request_id(&self) -> Option<&str> {
499 self.meta().extended_request_id()
500 }
501}
502impl ::aws_types::request_id::RequestId for crate::operation::delete_objects::DeleteObjectsError {
503 fn request_id(&self) -> Option<&str> {
504 self.meta().request_id()
505 }
506}
507
508pub use crate::operation::delete_objects::_delete_objects_input::DeleteObjectsInput;
509
510pub use crate::operation::delete_objects::_delete_objects_output::DeleteObjectsOutput;
511
512mod _delete_objects_input;
513
514mod _delete_objects_output;
515
516pub mod builders;