Skip to main content

aws_sdk_s3/operation/
put_object_lock_configuration.rs

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