Skip to main content

aws_sdk_s3/operation/
restore_object.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `RestoreObject`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct RestoreObject;
6impl RestoreObject {
7    /// Creates a new `RestoreObject`
8    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::restore_object::RestoreObjectInput,
14    ) -> ::std::result::Result<
15        crate::operation::restore_object::RestoreObjectOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::restore_object::RestoreObjectError,
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::restore_object::RestoreObjectError>()
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::restore_object::RestoreObjectOutput>()
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::restore_object::RestoreObjectInput,
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", "RestoreObject", input, runtime_plugins, stop_point)
55            // Create a parent span for the entire operation. Includes a random, internal-only,
56            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
57            .instrument(::tracing::debug_span!(
58                "S3.RestoreObject",
59                "rpc.service" = "S3",
60                "rpc.method" = "RestoreObject",
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 RestoreObject {
88    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
89        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("RestoreObject");
90
91        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
92            RestoreObjectRequestSerializer,
93        ));
94        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
95            RestoreObjectResponseDeserializer,
96        ));
97
98        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
99            crate::config::auth::Params::builder()
100                .operation_name("RestoreObject")
101                .build()
102                .expect("required fields set"),
103        ));
104
105        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("RestoreObject", "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("RestoreObject")
126            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
127                RestoreObjectTelemetryInputCaptureInterceptor,
128            ))
129            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
130                ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
131            ))
132            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
133                RestoreObjectEndpointParamsInterceptor,
134            ))
135            .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
136                crate::http_request_checksum::RequestChecksumInterceptor::new(
137                    |input: &::aws_smithy_runtime_api::client::interceptors::context::Input| {
138                        let input: &crate::operation::restore_object::RestoreObjectInput = input.downcast_ref().expect("correct type");
139                        let checksum_algorithm = input.checksum_algorithm();
140                        let checksum_algorithm = checksum_algorithm.map(|algorithm| algorithm.as_str());
141                        (checksum_algorithm.map(|s| s.to_string()), false)
142                    },
143                    |request: &mut ::aws_smithy_runtime_api::http::Request, cfg: &::aws_smithy_types::config_bag::ConfigBag| {
144                        // We check if the user has set any of the checksum values manually
145                        let mut user_set_checksum_value = false;
146                        let headers_to_check =
147                            request
148                                .headers()
149                                .iter()
150                                .filter_map(|(name, _val)| if name.starts_with("x-amz-checksum-") { Some(name) } else { None });
151                        for algo_header in headers_to_check {
152                            if request.headers().get(algo_header).is_some() {
153                                user_set_checksum_value = true;
154                            }
155                        }
156
157                        // We check if the user set the checksum algo manually
158                        let user_set_checksum_algo = request.headers().get("x-amz-sdk-checksum-algorithm").is_some();
159
160                        // This value is set by the user on the SdkConfig to indicate their preference
161                        let request_checksum_calculation = cfg
162                            .load::<::aws_smithy_types::checksum_config::RequestChecksumCalculation>()
163                            .unwrap_or(&::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported);
164
165                        // From the httpChecksum trait
166                        let http_checksum_required = false;
167
168                        let is_presigned_req = cfg.load::<crate::presigning::PresigningMarker>().is_some();
169
170                        // If the request is presigned we do not set a default.
171                        // If the RequestChecksumCalculation is WhenSupported and the user has not set a checksum value or algo
172                        // we set the default. If it is WhenRequired and a checksum is required by the trait and the user has not
173                        // set a checksum value or algo we also set the default. In all other cases we do nothing.
174                        match (
175                            request_checksum_calculation,
176                            http_checksum_required,
177                            user_set_checksum_value,
178                            user_set_checksum_algo,
179                            is_presigned_req,
180                        ) {
181                            (_, _, _, _, true) => {}
182                            (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported, _, false, false, _)
183                            | (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenRequired, true, false, false, _) => {
184                                request.headers_mut().insert("x-amz-sdk-checksum-algorithm", "CRC32");
185                            }
186                            _ => {}
187                        }
188
189                        // We return a bool indicating if the user did set the checksum value, if they did
190                        // we can short circuit and exit the interceptor early.
191                        Ok(user_set_checksum_value)
192                    },
193                ),
194            ))
195            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
196                crate::operation::restore_object::RestoreObjectError,
197            >::new())
198            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
199                crate::operation::restore_object::RestoreObjectError,
200            >::new())
201            .with_retry_classifier(
202                ::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::restore_object::RestoreObjectError>::builder()
203                    .transient_errors({
204                        let mut transient_errors: Vec<&'static str> = ::aws_runtime::retries::classifiers::TRANSIENT_ERRORS.into();
205                        transient_errors.push("InternalError");
206                        ::std::borrow::Cow::Owned(transient_errors)
207                    })
208                    .build(),
209            )
210            .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
211                crate::operation::restore_object::RestoreObjectError,
212            >::new());
213
214        ::std::borrow::Cow::Owned(rcb)
215    }
216}
217
218#[derive(Debug)]
219struct RestoreObjectTelemetryInputCaptureInterceptor;
220
221#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
222impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RestoreObjectTelemetryInputCaptureInterceptor {
223    fn name(&self) -> &'static str {
224        "RestoreObjectTelemetryInputCaptureInterceptor"
225    }
226
227    fn read_before_execution(
228        &self,
229        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
230            '_,
231            ::aws_smithy_runtime_api::client::interceptors::context::Input,
232            ::aws_smithy_runtime_api::client::interceptors::context::Output,
233            ::aws_smithy_runtime_api::client::interceptors::context::Error,
234        >,
235        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
236    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
237        // Nothing to do unless the customer opted in by naming members to record.
238        let ::std::option::Option::Some(requested) = cfg
239            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
240            .filter(|r| !r.is_empty())
241        else {
242            return ::std::result::Result::Ok(());
243        };
244
245        let ::std::option::Option::Some(input) = context.input().downcast_ref::<RestoreObjectInput>() else {
246            // A mismatched input is not this interceptor's concern; skip quietly.
247            return ::std::result::Result::Ok(());
248        };
249
250        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
251        if requested.should_capture("Bucket") {
252            if let ::std::option::Option::Some(value) = input.bucket.as_deref() {
253                captured.insert("Bucket", value);
254            }
255        }
256        if requested.should_capture("Key") {
257            if let ::std::option::Option::Some(value) = input.key.as_deref() {
258                captured.insert("Key", value);
259            }
260        }
261        if requested.should_capture("VersionId") {
262            if let ::std::option::Option::Some(value) = input.version_id.as_deref() {
263                captured.insert("VersionId", value);
264            }
265        }
266        if requested.should_capture("ExpectedBucketOwner") {
267            if let ::std::option::Option::Some(value) = input.expected_bucket_owner.as_deref() {
268                captured.insert("ExpectedBucketOwner", value);
269            }
270        }
271
272        cfg.interceptor_state().store_put(captured);
273        ::std::result::Result::Ok(())
274    }
275}
276#[derive(Debug)]
277struct RestoreObjectResponseDeserializer;
278impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for RestoreObjectResponseDeserializer {
279    fn deserialize_nonstreaming_with_config(
280        &self,
281        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
282        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
283    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
284        let (success, status) = (response.status().is_success(), response.status().as_u16());
285        let headers = response.headers();
286        let body = response.body().bytes().expect("body loaded");
287        #[allow(unused_mut)]
288        let mut force_error = false;
289        ::tracing::debug!(extended_request_id = ?crate::s3_request_id::RequestIdExt::extended_request_id(response));
290        if matches!(crate::rest_xml_unwrapped_errors::body_is_error(body), Ok(true)) {
291            force_error = true;
292        }
293        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
294        let parse_result = if !success && status != 200 || force_error {
295            crate::protocol_serde::shape_restore_object::de_restore_object_http_error(status, headers, body)
296        } else {
297            crate::protocol_serde::shape_restore_object::de_restore_object_http_response(status, headers, body)
298        };
299        crate::protocol_serde::type_erase_result(parse_result)
300    }
301}
302#[derive(Debug)]
303struct RestoreObjectRequestSerializer;
304impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for RestoreObjectRequestSerializer {
305    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
306    fn serialize_input(
307        &self,
308        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
309        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
310    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
311        let input = input
312            .downcast::<crate::operation::restore_object::RestoreObjectInput>()
313            .expect("correct type");
314        let _header_serialization_settings = _cfg
315            .load::<crate::serialization_settings::HeaderSerializationSettings>()
316            .cloned()
317            .unwrap_or_default();
318        let mut request_builder = {
319            #[allow(clippy::uninlined_format_args)]
320            fn uri_base(
321                _input: &crate::operation::restore_object::RestoreObjectInput,
322                output: &mut ::std::string::String,
323            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
324                use ::std::fmt::Write as _;
325                let input_1 = &_input.key;
326                let input_1 = input_1
327                    .as_ref()
328                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("key", "cannot be empty or unset"))?;
329                let key = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Greedy);
330                if key.is_empty() {
331                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
332                        "key",
333                        "cannot be empty or unset",
334                    ));
335                }
336                ::std::write!(output, "/{Key}", Key = key).expect("formatting should succeed");
337                ::std::result::Result::Ok(())
338            }
339            fn uri_query(
340                _input: &crate::operation::restore_object::RestoreObjectInput,
341                mut output: &mut ::std::string::String,
342            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
343                let mut query = ::aws_smithy_http::query::Writer::new(output);
344                query.push_v("restore");
345                if let ::std::option::Option::Some(inner_2) = &_input.version_id {
346                    {
347                        query.push_kv("versionId", &::aws_smithy_http::query::fmt_string(inner_2));
348                    }
349                }
350                ::std::result::Result::Ok(())
351            }
352            #[allow(clippy::unnecessary_wraps)]
353            fn update_http_builder(
354                input: &crate::operation::restore_object::RestoreObjectInput,
355                builder: ::http_1x::request::Builder,
356            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
357                let mut uri = ::std::string::String::new();
358                uri_base(input, &mut uri)?;
359                uri_query(input, &mut uri)?;
360                let builder = crate::protocol_serde::shape_restore_object::ser_restore_object_headers(input, builder)?;
361                ::std::result::Result::Ok(builder.method("POST").uri(uri))
362            }
363            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
364            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/xml");
365            builder
366        };
367        let body = ::aws_smithy_types::body::SdkBody::from(crate::protocol_serde::shape_restore_object_input::ser_restore_request_http_payload(
368            &input.restore_request,
369        )?);
370        if let Some(content_length) = body.content_length() {
371            let content_length = content_length.to_string();
372            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
373        }
374        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
375    }
376}
377#[derive(Debug)]
378struct RestoreObjectEndpointParamsInterceptor;
379
380#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
381impl ::aws_smithy_runtime_api::client::interceptors::Intercept for RestoreObjectEndpointParamsInterceptor {
382    fn name(&self) -> &'static str {
383        "RestoreObjectEndpointParamsInterceptor"
384    }
385
386    fn read_before_execution(
387        &self,
388        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
389            '_,
390            ::aws_smithy_runtime_api::client::interceptors::context::Input,
391            ::aws_smithy_runtime_api::client::interceptors::context::Output,
392            ::aws_smithy_runtime_api::client::interceptors::context::Error,
393        >,
394        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
395    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
396        let _input = context
397            .input()
398            .downcast_ref::<RestoreObjectInput>()
399            .ok_or("failed to downcast to RestoreObjectInput")?;
400
401        let params = crate::config::endpoint::Params::builder()
402            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
403            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
404            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
405            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
406            .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
407            .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
408            .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
409            .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
410            .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
411            .set_bucket(Some(
412                _input
413                    .bucket
414                    .clone()
415                    .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
416                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
417            ))
418            .build()
419            .map_err(|err| {
420                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
421            })?;
422        cfg.interceptor_state()
423            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
424        ::std::result::Result::Ok(())
425    }
426}
427
428// The get_* functions below are generated from JMESPath expressions in the
429// operationContextParams trait. They target the operation's input shape.
430
431/// Error type for the `RestoreObjectError` operation.
432#[non_exhaustive]
433#[derive(::std::fmt::Debug)]
434pub enum RestoreObjectError {
435    /// <p>This action is not allowed against this storage tier.</p>
436    ObjectAlreadyInActiveTierError(crate::types::error::ObjectAlreadyInActiveTierError),
437    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
438    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
439    variable wildcard pattern and check `.code()`:
440     \
441    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
442     \
443    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-RestoreObjectError) for what information is available for the error.")]
444    Unhandled(crate::error::sealed_unhandled::Unhandled),
445}
446impl RestoreObjectError {
447    /// Creates the `RestoreObjectError::Unhandled` variant from any error type.
448    pub fn unhandled(
449        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
450    ) -> Self {
451        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
452            source: err.into(),
453            meta: ::std::default::Default::default(),
454        })
455    }
456
457    /// Creates the `RestoreObjectError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
458    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
459        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
460            source: err.clone().into(),
461            meta: err,
462        })
463    }
464    ///
465    /// Returns error metadata, which includes the error code, message,
466    /// request ID, and potentially additional information.
467    ///
468    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
469        match self {
470            Self::ObjectAlreadyInActiveTierError(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
471            Self::Unhandled(e) => &e.meta,
472        }
473    }
474    /// Returns `true` if the error kind is `RestoreObjectError::ObjectAlreadyInActiveTierError`.
475    pub fn is_object_already_in_active_tier_error(&self) -> bool {
476        matches!(self, Self::ObjectAlreadyInActiveTierError(_))
477    }
478}
479impl ::std::error::Error for RestoreObjectError {
480    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
481        match self {
482            Self::ObjectAlreadyInActiveTierError(_inner) => ::std::option::Option::Some(_inner),
483            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
484        }
485    }
486}
487impl ::std::fmt::Display for RestoreObjectError {
488    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
489        match self {
490            Self::ObjectAlreadyInActiveTierError(_inner) => _inner.fmt(f),
491            Self::Unhandled(_inner) => {
492                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
493                    write!(f, "unhandled error ({code})")
494                } else {
495                    f.write_str("unhandled error")
496                }
497            }
498        }
499    }
500}
501impl ::aws_smithy_types::retry::ProvideErrorKind for RestoreObjectError {
502    fn code(&self) -> ::std::option::Option<&str> {
503        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
504    }
505    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
506        ::std::option::Option::None
507    }
508}
509impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for RestoreObjectError {
510    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
511        match self {
512            Self::ObjectAlreadyInActiveTierError(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
513            Self::Unhandled(_inner) => &_inner.meta,
514        }
515    }
516}
517impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for RestoreObjectError {
518    fn create_unhandled_error(
519        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
520        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
521    ) -> Self {
522        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
523            source,
524            meta: meta.unwrap_or_default(),
525        })
526    }
527}
528impl crate::s3_request_id::RequestIdExt for crate::operation::restore_object::RestoreObjectError {
529    fn extended_request_id(&self) -> Option<&str> {
530        self.meta().extended_request_id()
531    }
532}
533impl ::aws_types::request_id::RequestId for crate::operation::restore_object::RestoreObjectError {
534    fn request_id(&self) -> Option<&str> {
535        self.meta().request_id()
536    }
537}
538
539pub use crate::operation::restore_object::_restore_object_input::RestoreObjectInput;
540
541pub use crate::operation::restore_object::_restore_object_output::RestoreObjectOutput;
542
543mod _restore_object_input;
544
545mod _restore_object_output;
546
547/// Builders
548pub mod builders;