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 fn uri_base(
183 _input: &crate::operation::list_object_versions::ListObjectVersionsInput,
184 output: &mut ::std::string::String,
185 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
186 use ::std::fmt::Write as _;
187 ::std::write!(output, "/").expect("formatting should succeed");
188 ::std::result::Result::Ok(())
189 }
190 fn uri_query(
191 _input: &crate::operation::list_object_versions::ListObjectVersionsInput,
192 mut output: &mut ::std::string::String,
193 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
194 let mut query = ::aws_smithy_http::query::Writer::new(output);
195 query.push_v("versions");
196 if let ::std::option::Option::Some(inner_1) = &_input.delimiter {
197 {
198 query.push_kv("delimiter", &::aws_smithy_http::query::fmt_string(inner_1));
199 }
200 }
201 if let ::std::option::Option::Some(inner_2) = &_input.encoding_type {
202 {
203 query.push_kv("encoding-type", &::aws_smithy_http::query::fmt_string(inner_2));
204 }
205 }
206 if let ::std::option::Option::Some(inner_3) = &_input.key_marker {
207 {
208 query.push_kv("key-marker", &::aws_smithy_http::query::fmt_string(inner_3));
209 }
210 }
211 if let ::std::option::Option::Some(inner_4) = &_input.max_keys {
212 {
213 query.push_kv("max-keys", ::aws_smithy_types::primitive::Encoder::from(*inner_4).encode());
214 }
215 }
216 if let ::std::option::Option::Some(inner_5) = &_input.prefix {
217 {
218 query.push_kv("prefix", &::aws_smithy_http::query::fmt_string(inner_5));
219 }
220 }
221 if let ::std::option::Option::Some(inner_6) = &_input.version_id_marker {
222 {
223 query.push_kv("version-id-marker", &::aws_smithy_http::query::fmt_string(inner_6));
224 }
225 }
226 ::std::result::Result::Ok(())
227 }
228 #[allow(clippy::unnecessary_wraps)]
229 fn update_http_builder(
230 input: &crate::operation::list_object_versions::ListObjectVersionsInput,
231 builder: ::http::request::Builder,
232 ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
233 let mut uri = ::std::string::String::new();
234 uri_base(input, &mut uri)?;
235 uri_query(input, &mut uri)?;
236 let builder = crate::protocol_serde::shape_list_object_versions::ser_list_object_versions_headers(input, builder)?;
237 ::std::result::Result::Ok(builder.method("GET").uri(uri))
238 }
239 let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
240 builder
241 };
242 let body = ::aws_smithy_types::body::SdkBody::from("");
243
244 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
245 }
246}
247#[derive(Debug)]
248struct ListObjectVersionsEndpointParamsInterceptor;
249
250impl ::aws_smithy_runtime_api::client::interceptors::Intercept for ListObjectVersionsEndpointParamsInterceptor {
251 fn name(&self) -> &'static str {
252 "ListObjectVersionsEndpointParamsInterceptor"
253 }
254
255 fn read_before_execution(
256 &self,
257 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
258 '_,
259 ::aws_smithy_runtime_api::client::interceptors::context::Input,
260 ::aws_smithy_runtime_api::client::interceptors::context::Output,
261 ::aws_smithy_runtime_api::client::interceptors::context::Error,
262 >,
263 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
264 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
265 let _input = context
266 .input()
267 .downcast_ref::<ListObjectVersionsInput>()
268 .ok_or("failed to downcast to ListObjectVersionsInput")?;
269
270 let params = crate::config::endpoint::Params::builder()
271 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
272 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
273 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
274 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
275 .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
276 .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
277 .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
278 .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
279 .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
280 .set_bucket(Some(
281 _input
282 .bucket
283 .clone()
284 .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
285 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
286 ))
287 .set_prefix(_input.prefix.clone())
288 .build()
289 .map_err(|err| {
290 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
291 })?;
292 cfg.interceptor_state()
293 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
294 ::std::result::Result::Ok(())
295 }
296}
297
298#[allow(unreachable_code, unused_variables)]
302#[cfg(test)]
303mod list_object_versions_test {
304
305 #[::tokio::test]
308 #[::tracing_test::traced_test]
309 async fn out_of_order_versions_response() {
310 let expected_output = crate::operation::list_object_versions::ListObjectVersionsOutput::builder()
311 .set_name(::std::option::Option::Some("sdk-obj-versions-test".to_owned()))
312 .set_prefix(::std::option::Option::Some("".to_owned()))
313 .set_key_marker(::std::option::Option::Some("".to_owned()))
314 .set_version_id_marker(::std::option::Option::Some("".to_owned()))
315 .set_max_keys(::std::option::Option::Some(1000))
316 .set_is_truncated(::std::option::Option::Some(false))
317 .set_delete_markers(::std::option::Option::Some(vec![
318 crate::types::DeleteMarkerEntry::builder()
319 .set_key(::std::option::Option::Some("build.gradle.kts".to_owned()))
320 .set_version_id(::std::option::Option::Some("null".to_owned()))
321 .set_is_latest(::std::option::Option::Some(true))
322 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
323 1234567890, 0_f64,
324 )))
325 .set_owner(::std::option::Option::Some(
326 crate::types::Owner::builder()
327 .set_id(::std::option::Option::Some(
328 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
329 ))
330 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
331 .build(),
332 ))
333 .build(),
334 crate::types::DeleteMarkerEntry::builder()
335 .set_key(::std::option::Option::Some("file-2".to_owned()))
336 .set_version_id(::std::option::Option::Some("o98RL6vmlOYiymftbX7wgy_4XWQG4AmY".to_owned()))
337 .set_is_latest(::std::option::Option::Some(true))
338 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
339 1234567890, 0_f64,
340 )))
341 .set_owner(::std::option::Option::Some(
342 crate::types::Owner::builder()
343 .set_id(::std::option::Option::Some(
344 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
345 ))
346 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
347 .build(),
348 ))
349 .build(),
350 ]))
351 .set_versions(::std::option::Option::Some(vec![
352 crate::types::ObjectVersion::builder()
353 .set_key(::std::option::Option::Some("build.gradle.kts".to_owned()))
354 .set_version_id(::std::option::Option::Some("IfK9Z4.H5TLAtMxFrxN_C7rFEZbufF3V".to_owned()))
355 .set_is_latest(::std::option::Option::Some(false))
356 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
357 1234567890, 0_f64,
358 )))
359 .set_e_tag(::std::option::Option::Some("\"99613b85e3f38b222c4ee548cde1e59d\"".to_owned()))
360 .set_size(::std::option::Option::Some(6903))
361 .set_owner(::std::option::Option::Some(
362 crate::types::Owner::builder()
363 .set_id(::std::option::Option::Some(
364 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
365 ))
366 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
367 .build(),
368 ))
369 .set_storage_class(::std::option::Option::Some(
370 "STANDARD"
371 .parse::<crate::types::ObjectVersionStorageClass>()
372 .expect("static value validated to member"),
373 ))
374 .build(),
375 crate::types::ObjectVersion::builder()
376 .set_key(::std::option::Option::Some("file-2".to_owned()))
377 .set_version_id(::std::option::Option::Some("PSVAbvQihRdsNiktGothjGng7q.5ou9Q".to_owned()))
378 .set_is_latest(::std::option::Option::Some(false))
379 .set_last_modified(::std::option::Option::Some(::aws_smithy_types::DateTime::from_fractional_secs(
380 1234567890, 0_f64,
381 )))
382 .set_e_tag(::std::option::Option::Some("\"1727d9cb38dd325d9c12c973ef3675fc\"".to_owned()))
383 .set_size(::std::option::Option::Some(14))
384 .set_owner(::std::option::Option::Some(
385 crate::types::Owner::builder()
386 .set_id(::std::option::Option::Some(
387 "c1665459250c459f1849ddce9b291fc3a72bcf5220dc8f6391a0a1045c683b34".to_owned(),
388 ))
389 .set_display_name(::std::option::Option::Some("test-name".to_owned()))
390 .build(),
391 ))
392 .set_storage_class(::std::option::Option::Some(
393 "STANDARD"
394 .parse::<crate::types::ObjectVersionStorageClass>()
395 .expect("static value validated to member"),
396 ))
397 .build(),
398 ]))
399 .build();
400 let mut http_response = ::aws_smithy_runtime_api::http::Response::try_from(::http::response::Builder::new()
401 .status(200)
402 .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"))
403 .unwrap()
404 ).unwrap();
405 use ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin;
406 use ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse;
407
408 let op = crate::operation::list_object_versions::ListObjectVersions::new();
409 let config = op.config().expect("the operation has config");
410 let de = config
411 .load::<::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer>()
412 .expect("the config must have a deserializer");
413
414 let parsed = de.deserialize_streaming(&mut http_response);
415 let parsed = parsed.unwrap_or_else(|| {
416 let http_response = http_response.map(|body| {
417 ::aws_smithy_types::body::SdkBody::from(::bytes::Bytes::copy_from_slice(&::aws_smithy_protocol_test::decode_body_data(
418 body.bytes().unwrap(),
419 ::aws_smithy_protocol_test::MediaType::from("application/xml"),
420 )))
421 });
422 de.deserialize_nonstreaming(&http_response)
423 });
424 let parsed = parsed
425 .expect("should be successful response")
426 .downcast::<crate::operation::list_object_versions::ListObjectVersionsOutput>()
427 .unwrap();
428 ::pretty_assertions::assert_eq!(parsed.is_truncated, expected_output.is_truncated, "Unexpected value for `is_truncated`");
429 ::pretty_assertions::assert_eq!(parsed.key_marker, expected_output.key_marker, "Unexpected value for `key_marker`");
430 ::pretty_assertions::assert_eq!(
431 parsed.version_id_marker,
432 expected_output.version_id_marker,
433 "Unexpected value for `version_id_marker`"
434 );
435 ::pretty_assertions::assert_eq!(
436 parsed.next_key_marker,
437 expected_output.next_key_marker,
438 "Unexpected value for `next_key_marker`"
439 );
440 ::pretty_assertions::assert_eq!(
441 parsed.next_version_id_marker,
442 expected_output.next_version_id_marker,
443 "Unexpected value for `next_version_id_marker`"
444 );
445 ::pretty_assertions::assert_eq!(parsed.versions, expected_output.versions, "Unexpected value for `versions`");
446 ::pretty_assertions::assert_eq!(
447 parsed.delete_markers,
448 expected_output.delete_markers,
449 "Unexpected value for `delete_markers`"
450 );
451 ::pretty_assertions::assert_eq!(parsed.name, expected_output.name, "Unexpected value for `name`");
452 ::pretty_assertions::assert_eq!(parsed.prefix, expected_output.prefix, "Unexpected value for `prefix`");
453 ::pretty_assertions::assert_eq!(parsed.delimiter, expected_output.delimiter, "Unexpected value for `delimiter`");
454 ::pretty_assertions::assert_eq!(parsed.max_keys, expected_output.max_keys, "Unexpected value for `max_keys`");
455 ::pretty_assertions::assert_eq!(
456 parsed.common_prefixes,
457 expected_output.common_prefixes,
458 "Unexpected value for `common_prefixes`"
459 );
460 ::pretty_assertions::assert_eq!(
461 parsed.encoding_type,
462 expected_output.encoding_type,
463 "Unexpected value for `encoding_type`"
464 );
465 ::pretty_assertions::assert_eq!(
466 parsed.request_charged,
467 expected_output.request_charged,
468 "Unexpected value for `request_charged`"
469 );
470 }
471}
472
473#[non_exhaustive]
475#[derive(::std::fmt::Debug)]
476pub enum ListObjectVersionsError {
477 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
479 variable wildcard pattern and check `.code()`:
480 \
481 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
482 \
483 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-ListObjectVersionsError) for what information is available for the error.")]
484 Unhandled(crate::error::sealed_unhandled::Unhandled),
485}
486impl ListObjectVersionsError {
487 pub fn unhandled(
489 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
490 ) -> Self {
491 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
492 source: err.into(),
493 meta: ::std::default::Default::default(),
494 })
495 }
496
497 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
499 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
500 source: err.clone().into(),
501 meta: err,
502 })
503 }
504 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
509 match self {
510 Self::Unhandled(e) => &e.meta,
511 }
512 }
513}
514impl ::std::error::Error for ListObjectVersionsError {
515 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
516 match self {
517 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
518 }
519 }
520}
521impl ::std::fmt::Display for ListObjectVersionsError {
522 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
523 match self {
524 Self::Unhandled(_inner) => {
525 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
526 write!(f, "unhandled error ({code})")
527 } else {
528 f.write_str("unhandled error")
529 }
530 }
531 }
532 }
533}
534impl ::aws_smithy_types::retry::ProvideErrorKind for ListObjectVersionsError {
535 fn code(&self) -> ::std::option::Option<&str> {
536 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
537 }
538 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
539 ::std::option::Option::None
540 }
541}
542impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for ListObjectVersionsError {
543 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
544 match self {
545 Self::Unhandled(_inner) => &_inner.meta,
546 }
547 }
548}
549impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for ListObjectVersionsError {
550 fn create_unhandled_error(
551 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
552 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
553 ) -> Self {
554 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
555 source,
556 meta: meta.unwrap_or_default(),
557 })
558 }
559}
560impl crate::s3_request_id::RequestIdExt for crate::operation::list_object_versions::ListObjectVersionsError {
561 fn extended_request_id(&self) -> Option<&str> {
562 self.meta().extended_request_id()
563 }
564}
565impl ::aws_types::request_id::RequestId for crate::operation::list_object_versions::ListObjectVersionsError {
566 fn request_id(&self) -> Option<&str> {
567 self.meta().request_id()
568 }
569}
570
571pub use crate::operation::list_object_versions::_list_object_versions_output::ListObjectVersionsOutput;
572
573pub use crate::operation::list_object_versions::_list_object_versions_input::ListObjectVersionsInput;
574
575mod _list_object_versions_input;
576
577mod _list_object_versions_output;
578
579pub mod builders;