1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct ListObjectVersions;
6impl ListObjectVersions {
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::list_object_versions::ListObjectVersionsInput,
14 ) -> ::std::result::Result<
15 crate::operation::list_object_versions::ListObjectVersionsOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::list_object_versions::ListObjectVersionsError,
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::list_object_versions::ListObjectVersionsError>()
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::list_object_versions::ListObjectVersionsOutput>()
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::list_object_versions::ListObjectVersionsInput,
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", "ListObjectVersions", input, runtime_plugins, stop_point)
55 .instrument(::tracing::debug_span!(
58 "S3.ListObjectVersions",
59 "rpc.service" = "S3",
60 "rpc.method" = "ListObjectVersions",
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 ListObjectVersions {
88 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("ListObjectVersions");
90
91 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92 ListObjectVersionsRequestSerializer,
93 ));
94 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95 ListObjectVersionsResponseDeserializer,
96 ));
97
98 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99 crate::config::auth::Params::builder()
100 .operation_name("ListObjectVersions")
101 .build()
102 .expect("required fields set"),
103 ));
104
105 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("ListObjectVersions", "S3"));
106 let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
107 signing_options.double_uri_encode = false;
108 signing_options.content_sha256_header = true;
109 signing_options.normalize_uri_path = false;
110 signing_options.payload_override = None;
111
112 cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
113 signing_options,
114 ..::std::default::Default::default()
115 });
116
117 ::std::option::Option::Some(cfg.freeze())
118 }
119
120 fn runtime_components(
121 &self,
122 _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
123 ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
124 #[allow(unused_mut)]
125 let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("ListObjectVersions")
126 .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
127.with_interceptor(ListObjectVersionsEndpointParamsInterceptor)
128 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<crate::operation::list_object_versions::ListObjectVersionsError>::new())
129.with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<crate::operation::list_object_versions::ListObjectVersionsError>::new())
130.with_retry_classifier(::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::list_object_versions::ListObjectVersionsError>::builder().transient_errors({
131 let mut transient_errors: Vec<&'static str> = ::aws_runtime::retries::classifiers::TRANSIENT_ERRORS.into();
132 transient_errors.push("InternalError");
133 ::std::borrow::Cow::Owned(transient_errors)
134 }).build());
135
136 ::std::borrow::Cow::Owned(rcb)
137 }
138}
139
140#[derive(Debug)]
141struct ListObjectVersionsResponseDeserializer;
142impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for ListObjectVersionsResponseDeserializer {
143 fn deserialize_nonstreaming(
144 &self,
145 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
146 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
147 let (success, status) = (response.status().is_success(), response.status().as_u16());
148 let headers = response.headers();
149 let body = response.body().bytes().expect("body loaded");
150 #[allow(unused_mut)]
151 let mut force_error = false;
152 ::tracing::debug!(extended_request_id = ?crate::s3_request_id::RequestIdExt::extended_request_id(response));
153 if matches!(crate::rest_xml_unwrapped_errors::body_is_error(body), Ok(true)) {
154 force_error = true;
155 }
156 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
157 let parse_result = if !success && status != 200 || force_error {
158 crate::protocol_serde::shape_list_object_versions::de_list_object_versions_http_error(status, headers, body)
159 } else {
160 crate::protocol_serde::shape_list_object_versions::de_list_object_versions_http_response(status, headers, body)
161 };
162 crate::protocol_serde::type_erase_result(parse_result)
163 }
164}
165#[derive(Debug)]
166struct ListObjectVersionsRequestSerializer;
167impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for ListObjectVersionsRequestSerializer {
168 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
169 fn serialize_input(
170 &self,
171 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
172 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
173 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
174 let input = input
175 .downcast::<crate::operation::list_object_versions::ListObjectVersionsInput>()
176 .expect("correct type");
177 let _header_serialization_settings = _cfg
178 .load::<crate::serialization_settings::HeaderSerializationSettings>()
179 .cloned()
180 .unwrap_or_default();
181 let mut request_builder = {
182 #[allow(clippy::uninlined_format_args)]
183 fn uri_base(
184 _input: &crate::operation::list_object_versions::ListObjectVersionsInput,
185 output: &mut ::std::string::String,
186 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
187 use ::std::fmt::Write as _;
188 ::std::write!(output, "/").expect("formatting should succeed");
189 ::std::result::Result::Ok(())
190 }
191 fn uri_query(
192 _input: &crate::operation::list_object_versions::ListObjectVersionsInput,
193 mut output: &mut ::std::string::String,
194 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
195 let mut query = ::aws_smithy_http::query::Writer::new(output);
196 query.push_v("versions");
197 if let ::std::option::Option::Some(inner_1) = &_input.delimiter {
198 {
199 query.push_kv("delimiter", &::aws_smithy_http::query::fmt_string(inner_1));
200 }
201 }
202 if let ::std::option::Option::Some(inner_2) = &_input.encoding_type {
203 {
204 query.push_kv("encoding-type", &::aws_smithy_http::query::fmt_string(inner_2));
205 }
206 }
207 if let ::std::option::Option::Some(inner_3) = &_input.key_marker {
208 {
209 query.push_kv("key-marker", &::aws_smithy_http::query::fmt_string(inner_3));
210 }
211 }
212 if let ::std::option::Option::Some(inner_4) = &_input.max_keys {
213 {
214 query.push_kv("max-keys", ::aws_smithy_types::primitive::Encoder::from(*inner_4).encode());
215 }
216 }
217 if let ::std::option::Option::Some(inner_5) = &_input.prefix {
218 {
219 query.push_kv("prefix", &::aws_smithy_http::query::fmt_string(inner_5));
220 }
221 }
222 if let ::std::option::Option::Some(inner_6) = &_input.version_id_marker {
223 {
224 query.push_kv("version-id-marker", &::aws_smithy_http::query::fmt_string(inner_6));
225 }
226 }
227 ::std::result::Result::Ok(())
228 }
229 #[allow(clippy::unnecessary_wraps)]
230 fn update_http_builder(
231 input: &crate::operation::list_object_versions::ListObjectVersionsInput,
232 builder: ::http::request::Builder,
233 ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
234 let mut uri = ::std::string::String::new();
235 uri_base(input, &mut uri)?;
236 uri_query(input, &mut uri)?;
237 let builder = crate::protocol_serde::shape_list_object_versions::ser_list_object_versions_headers(input, builder)?;
238 ::std::result::Result::Ok(builder.method("GET").uri(uri))
239 }
240 let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
241 builder
242 };
243 let body = ::aws_smithy_types::body::SdkBody::from("");
244
245 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
246 }
247}
248#[derive(Debug)]
249struct ListObjectVersionsEndpointParamsInterceptor;
250
251impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListObjectVersionsEndpointParamsInterceptor {
252 fn name(&self) -> &'static str {
253 "ListObjectVersionsEndpointParamsInterceptor"
254 }
255
256 fn read_before_execution(
257 &self,
258 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
259 '_,
260 ::aws_smithy_runtime_api::client::interceptors::context::Input,
261 ::aws_smithy_runtime_api::client::interceptors::context::Output,
262 ::aws_smithy_runtime_api::client::interceptors::context::Error,
263 >,
264 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
265 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
266 let _input = context
267 .input()
268 .downcast_ref::<ListObjectVersionsInput>()
269 .ok_or("failed to downcast to ListObjectVersionsInput")?;
270
271 let params = crate::config::endpoint::Params::builder()
272 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
273 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
274 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
275 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
276 .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
277 .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
278 .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
279 .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
280 .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
281 .set_bucket(Some(
282 _input
283 .bucket
284 .clone()
285 .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
286 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
287 ))
288 .set_prefix(_input.prefix.clone())
289 .build()
290 .map_err(|err| {
291 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
292 })?;
293 cfg.interceptor_state()
294 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
295 ::std::result::Result::Ok(())
296 }
297}
298
299#[allow(unreachable_code, unused_variables)]
303#[cfg(test)]
304mod list_object_versions_test {
305
306 #[::tokio::test]
309 #[::tracing_test::traced_test]
310 async fn out_of_order_versions_response() {
311 let expected_output = crate::operation::list_object_versions::ListObjectVersionsOutput::builder()
312 .set_name(::std::option::Option::Some("sdk-obj-versions-test".to_owned()))
313 .set_prefix(::std::option::Option::Some("".to_owned()))
314 .set_key_marker(::std::option::Option::Some("".to_owned()))
315 .set_version_id_marker(::std::option::Option::Some("".to_owned()))
316 .set_max_keys(::std::option::Option::Some(1000))
317 .set_is_truncated(::std::option::Option::Some(false))
318 .set_delete_markers(::std::option::Option::Some(vec![
319 crate::types::DeleteMarkerEntry::builder()
320 .set_key(::std::option::Option::Some("build.gradle.kts".to_owned()))
321 .set_version_id(::std::option::Option::Some("null".to_owned()))
322 .set_is_latest(::std::option::Option::Some(true))
323 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
324 1234567890, 0_f64,
325 )))
326 .set_owner(::std::option::Option::Some(
327 crate::types::Owner::builder()
328 .set_id(::std::option::Option::Some(
329 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
330 ))
331 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
332 .build(),
333 ))
334 .build(),
335 crate::types::DeleteMarkerEntry::builder()
336 .set_key(::std::option::Option::Some("file-2".to_owned()))
337 .set_version_id(::std::option::Option::Some("o98RL6vmlOYiymftbX7wgy_4XWQG4AmY".to_owned()))
338 .set_is_latest(::std::option::Option::Some(true))
339 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
340 1234567890, 0_f64,
341 )))
342 .set_owner(::std::option::Option::Some(
343 crate::types::Owner::builder()
344 .set_id(::std::option::Option::Some(
345 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
346 ))
347 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
348 .build(),
349 ))
350 .build(),
351 ]))
352 .set_versions(::std::option::Option::Some(vec![
353 crate::types::ObjectVersion::builder()
354 .set_key(::std::option::Option::Some("build.gradle.kts".to_owned()))
355 .set_version_id(::std::option::Option::Some("IfK9Z4.H5TLAtMxFrxN_C7rFEZbufF3V".to_owned()))
356 .set_is_latest(::std::option::Option::Some(false))
357 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
358 1234567890, 0_f64,
359 )))
360 .set_e_tag(::std::option::Option::Some("\"99613b85e3f38b222c4ee548cde1e59d\"".to_owned()))
361 .set_size(::std::option::Option::Some(6903))
362 .set_owner(::std::option::Option::Some(
363 crate::types::Owner::builder()
364 .set_id(::std::option::Option::Some(
365 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
366 ))
367 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
368 .build(),
369 ))
370 .set_storage_class(::std::option::Option::Some(
371 "STANDARD"
372 .parse::<crate::types::ObjectVersionStorageClass>()
373 .expect("static value validated to member"),
374 ))
375 .build(),
376 crate::types::ObjectVersion::builder()
377 .set_key(::std::option::Option::Some("file-2".to_owned()))
378 .set_version_id(::std::option::Option::Some("PSVAbvQihRdsNiktGothjGng7q.5ou9Q".to_owned()))
379 .set_is_latest(::std::option::Option::Some(false))
380 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
381 1234567890, 0_f64,
382 )))
383 .set_e_tag(::std::option::Option::Some("\"1727d9cb38dd325d9c12c973ef3675fc\"".to_owned()))
384 .set_size(::std::option::Option::Some(14))
385 .set_owner(::std::option::Option::Some(
386 crate::types::Owner::builder()
387 .set_id(::std::option::Option::Some(
388 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
389 ))
390 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
391 .build(),
392 ))
393 .set_storage_class(::std::option::Option::Some(
394 "STANDARD"
395 .parse::<crate::types::ObjectVersionStorageClass>()
396 .expect("static value validated to member"),
397 ))
398 .build(),
399 ]))
400 .build();
401 let mut http_response = ::aws_smithy_runtime_api::http::Response::try_from(::http::response::Builder::new()
402 .status(200)
403 .body(::aws_smithy_types::body::SdkBody::from("<?xml version=\"1.0\"?>\n<ListVersionsResult xmlns=\"http://s3.amazonaws.com/doc/2006-03-01/\">\n <Name>sdk-obj-versions-test</Name>\n <Prefix/>\n <KeyMarker/>\n <VersionIdMarker/>\n <MaxKeys>1000</MaxKeys>\n <IsTruncated>false</IsTruncated>\n <DeleteMarker>\n <Key>build.gradle.kts</Key>\n <VersionId>null</VersionId>\n <IsLatest>true</IsLatest>\n <LastModified>2009-02-13T23:31:30Z</LastModified>\n <Owner>\n <ID>c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34</ID>\n <DisplayName>test-name</DisplayName>\n </Owner>\n </DeleteMarker>\n <Version>\n <Key>build.gradle.kts</Key>\n <VersionId>IfK9Z4.H5TLAtMxFrxN_C7rFEZbufF3V</VersionId>\n <IsLatest>false</IsLatest>\n <LastModified>2009-02-13T23:31:30Z</LastModified>\n <ETag>\"99613b85e3f38b222c4ee548cde1e59d\"</ETag>\n <Size>6903</Size>\n <Owner>\n <ID>c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34</ID>\n <DisplayName>test-name</DisplayName>\n </Owner>\n <StorageClass>STANDARD</StorageClass>\n </Version>\n <DeleteMarker>\n <Key>file-2</Key>\n <VersionId>o98RL6vmlOYiymftbX7wgy_4XWQG4AmY</VersionId>\n <IsLatest>true</IsLatest>\n <LastModified>2009-02-13T23:31:30Z</LastModified>\n <Owner>\n <ID>c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34</ID>\n <DisplayName>test-name</DisplayName>\n </Owner>\n </DeleteMarker>\n <Version>\n <Key>file-2</Key>\n <VersionId>PSVAbvQihRdsNiktGothjGng7q.5ou9Q</VersionId>\n <IsLatest>false</IsLatest>\n <LastModified>2009-02-13T23:31:30Z</LastModified>\n <ETag>\"1727d9cb38dd325d9c12c973ef3675fc\"</ETag>\n <Size>14</Size>\n <Owner>\n <ID>c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34</ID>\n <DisplayName>test-name</DisplayName>\n </Owner>\n <StorageClass>STANDARD</StorageClass>\n </Version>\n</ListVersionsResult>\n"))
404 .unwrap()
405 ).unwrap();
406 use ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin;
407 use ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse;
408
409 let op = crate::operation::list_object_versions::ListObjectVersions::new();
410 let config = op.config().expect("the operation has config");
411 let de = config
412 .load::<::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer>()
413 .expect("the config must have a deserializer");
414
415 let parsed = de.deserialize_streaming(&mut http_response);
416 let parsed = parsed.unwrap_or_else(|| {
417 let http_response = http_response.map(|body| {
418 ::aws_smithy_types::body::SdkBody::from(::bytes::Bytes::copy_from_slice(&::aws_smithy_protocol_test::decode_body_data(
419 body.bytes().unwrap(),
420 ::aws_smithy_protocol_test::MediaType::from("application/xml"),
421 )))
422 });
423 de.deserialize_nonstreaming(&http_response)
424 });
425 let parsed = parsed
426 .expect("should be successful response")
427 .downcast::<crate::operation::list_object_versions::ListObjectVersionsOutput>()
428 .unwrap();
429 ::pretty_assertions::assert_eq!(parsed.is_truncated, expected_output.is_truncated, "Unexpected value for `is_truncated`");
430 ::pretty_assertions::assert_eq!(parsed.key_marker, expected_output.key_marker, "Unexpected value for `key_marker`");
431 ::pretty_assertions::assert_eq!(
432 parsed.version_id_marker,
433 expected_output.version_id_marker,
434 "Unexpected value for `version_id_marker`"
435 );
436 ::pretty_assertions::assert_eq!(
437 parsed.next_key_marker,
438 expected_output.next_key_marker,
439 "Unexpected value for `next_key_marker`"
440 );
441 ::pretty_assertions::assert_eq!(
442 parsed.next_version_id_marker,
443 expected_output.next_version_id_marker,
444 "Unexpected value for `next_version_id_marker`"
445 );
446 ::pretty_assertions::assert_eq!(parsed.versions, expected_output.versions, "Unexpected value for `versions`");
447 ::pretty_assertions::assert_eq!(
448 parsed.delete_markers,
449 expected_output.delete_markers,
450 "Unexpected value for `delete_markers`"
451 );
452 ::pretty_assertions::assert_eq!(parsed.name, expected_output.name, "Unexpected value for `name`");
453 ::pretty_assertions::assert_eq!(parsed.prefix, expected_output.prefix, "Unexpected value for `prefix`");
454 ::pretty_assertions::assert_eq!(parsed.delimiter, expected_output.delimiter, "Unexpected value for `delimiter`");
455 ::pretty_assertions::assert_eq!(parsed.max_keys, expected_output.max_keys, "Unexpected value for `max_keys`");
456 ::pretty_assertions::assert_eq!(
457 parsed.common_prefixes,
458 expected_output.common_prefixes,
459 "Unexpected value for `common_prefixes`"
460 );
461 ::pretty_assertions::assert_eq!(
462 parsed.encoding_type,
463 expected_output.encoding_type,
464 "Unexpected value for `encoding_type`"
465 );
466 ::pretty_assertions::assert_eq!(
467 parsed.request_charged,
468 expected_output.request_charged,
469 "Unexpected value for `request_charged`"
470 );
471 }
472}
473
474#[non_exhaustive]
476#[derive(::std::fmt::Debug)]
477pub enum ListObjectVersionsError {
478 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
480 variable wildcard pattern and check `.code()`:
481 \
482 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
483 \
484 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ListObjectVersionsError) for what information is available for the error.")]
485 Unhandled(crate::error::sealed_unhandled::Unhandled),
486}
487impl ListObjectVersionsError {
488 pub fn unhandled(
490 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
491 ) -> Self {
492 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
493 source: err.into(),
494 meta: ::std::default::Default::default(),
495 })
496 }
497
498 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
500 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
501 source: err.clone().into(),
502 meta: err,
503 })
504 }
505 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
510 match self {
511 Self::Unhandled(e) => &e.meta,
512 }
513 }
514}
515impl ::std::error::Error for ListObjectVersionsError {
516 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
517 match self {
518 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
519 }
520 }
521}
522impl ::std::fmt::Display for ListObjectVersionsError {
523 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
524 match self {
525 Self::Unhandled(_inner) => {
526 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
527 write!(f, "unhandled error ({code})")
528 } else {
529 f.write_str("unhandled error")
530 }
531 }
532 }
533 }
534}
535impl ::aws_smithy_types::retry::ProvideErrorKind for ListObjectVersionsError {
536 fn code(&self) -> ::std::option::Option<&str> {
537 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
538 }
539 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
540 ::std::option::Option::None
541 }
542}
543impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ListObjectVersionsError {
544 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
545 match self {
546 Self::Unhandled(_inner) => &_inner.meta,
547 }
548 }
549}
550impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListObjectVersionsError {
551 fn create_unhandled_error(
552 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
553 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
554 ) -> Self {
555 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
556 source,
557 meta: meta.unwrap_or_default(),
558 })
559 }
560}
561impl crate::s3_request_id::RequestIdExt for crate::operation::list_object_versions::ListObjectVersionsError {
562 fn extended_request_id(&self) -> Option<&str> {
563 self.meta().extended_request_id()
564 }
565}
566impl ::aws_types::request_id::RequestId for crate::operation::list_object_versions::ListObjectVersionsError {
567 fn request_id(&self) -> Option<&str> {
568 self.meta().request_id()
569 }
570}
571
572pub use crate::operation::list_object_versions::_list_object_versions_output::ListObjectVersionsOutput;
573
574pub use crate::operation::list_object_versions::_list_object_versions_input::ListObjectVersionsInput;
575
576mod _list_object_versions_input;
577
578mod _list_object_versions_output;
579
580pub mod builders;