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            .with_retry_classifier(::aws_runtime::service_clock_skew::ServiceClockSkewClassifier::<
218                crate::operation::put_object_lock_configuration::PutObjectLockConfigurationError,
219            >::new());
220
221        ::std::borrow::Cow::Owned(rcb)
222    }
223}
224
225#[derive(Debug)]
226struct PutObjectLockConfigurationTelemetryInputCaptureInterceptor;
227
228#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
229impl ::aws_smithy_runtime_api::client::interceptors::Intercept for PutObjectLockConfigurationTelemetryInputCaptureInterceptor {
230    fn name(&self) -> &'static str {
231        "PutObjectLockConfigurationTelemetryInputCaptureInterceptor"
232    }
233
234    fn read_before_execution(
235        &self,
236        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
237            '_,
238            ::aws_smithy_runtime_api::client::interceptors::context::Input,
239            ::aws_smithy_runtime_api::client::interceptors::context::Output,
240            ::aws_smithy_runtime_api::client::interceptors::context::Error,
241        >,
242        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
243    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
244        // Nothing to do unless the customer opted in by naming members to record.
245        let ::std::option::Option::Some(requested) = cfg
246            .load::<::aws_smithy_types::telemetry::RequestedTelemetryAttributes>()
247            .filter(|r| !r.is_empty())
248        else {
249            return ::std::result::Result::Ok(());
250        };
251
252        let ::std::option::Option::Some(input) = context.input().downcast_ref::<PutObjectLockConfigurationInput>() else {
253            // A mismatched input is not this interceptor's concern; skip quietly.
254            return ::std::result::Result::Ok(());
255        };
256
257        let mut captured = ::aws_smithy_types::telemetry::CapturedTelemetryAttributes::default();
258        if requested.should_capture("Bucket") {
259            if let ::std::option::Option::Some(value) = input.bucket.as_deref() {
260                captured.insert("Bucket", value);
261            }
262        }
263        if requested.should_capture("Token") {
264            if let ::std::option::Option::Some(value) = input.token.as_deref() {
265                captured.insert("Token", value);
266            }
267        }
268        if requested.should_capture("ContentMD5") {
269            if let ::std::option::Option::Some(value) = input.content_md5.as_deref() {
270                captured.insert("ContentMD5", value);
271            }
272        }
273        if requested.should_capture("ExpectedBucketOwner") {
274            if let ::std::option::Option::Some(value) = input.expected_bucket_owner.as_deref() {
275                captured.insert("ExpectedBucketOwner", value);
276            }
277        }
278
279        cfg.interceptor_state().store_put(captured);
280        ::std::result::Result::Ok(())
281    }
282}
283#[derive(Debug)]
284struct PutObjectLockConfigurationResponseDeserializer;
285impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for PutObjectLockConfigurationResponseDeserializer {
286    fn deserialize_nonstreaming_with_config(
287        &self,
288        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
289        _cfg: &::aws_smithy_types::config_bag::ConfigBag,
290    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
291        let (success, status) = (response.status().is_success(), response.status().as_u16());
292        let headers = response.headers();
293        let body = response.body().bytes().expect("body loaded");
294        #[allow(unused_mut)]
295        let mut force_error = false;
296        ::tracing::debug!(extended_request_id = ?crate::s3_request_id::RequestIdExt::extended_request_id(response));
297        if matches!(crate::rest_xml_unwrapped_errors::body_is_error(body), Ok(true)) {
298            force_error = true;
299        }
300        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
301        let parse_result = if !success && status != 200 || force_error {
302            crate::protocol_serde::shape_put_object_lock_configuration::de_put_object_lock_configuration_http_error(status, headers, body)
303        } else {
304            crate::protocol_serde::shape_put_object_lock_configuration::de_put_object_lock_configuration_http_response(status, headers, body)
305        };
306        crate::protocol_serde::type_erase_result(parse_result)
307    }
308}
309#[derive(Debug)]
310struct PutObjectLockConfigurationRequestSerializer;
311impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for PutObjectLockConfigurationRequestSerializer {
312    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
313    fn serialize_input(
314        &self,
315        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
316        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
317    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
318        let input = input
319            .downcast::<crate::operation::put_object_lock_configuration::PutObjectLockConfigurationInput>()
320            .expect("correct type");
321        let _header_serialization_settings = _cfg
322            .load::<crate::serialization_settings::HeaderSerializationSettings>()
323            .cloned()
324            .unwrap_or_default();
325        let mut request_builder = {
326            #[allow(clippy::uninlined_format_args)]
327            fn uri_base(
328                _input: &crate::operation::put_object_lock_configuration::PutObjectLockConfigurationInput,
329                output: &mut ::std::string::String,
330            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
331                use ::std::fmt::Write as _;
332                ::std::write!(output, "/").expect("formatting should succeed");
333                ::std::result::Result::Ok(())
334            }
335            fn uri_query(
336                _input: &crate::operation::put_object_lock_configuration::PutObjectLockConfigurationInput,
337                mut output: &mut ::std::string::String,
338            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
339                let mut query = ::aws_smithy_http::query::Writer::new(output);
340                query.push_v("object-lock");
341                ::std::result::Result::Ok(())
342            }
343            #[allow(clippy::unnecessary_wraps)]
344            fn update_http_builder(
345                input: &crate::operation::put_object_lock_configuration::PutObjectLockConfigurationInput,
346                builder: ::http_1x::request::Builder,
347            ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
348                let mut uri = ::std::string::String::new();
349                uri_base(input, &mut uri)?;
350                uri_query(input, &mut uri)?;
351                let builder = crate::protocol_serde::shape_put_object_lock_configuration::ser_put_object_lock_configuration_headers(input, builder)?;
352                ::std::result::Result::Ok(builder.method("PUT").uri(uri))
353            }
354            let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
355            builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/xml");
356            builder
357        };
358        let body = ::aws_smithy_types::body::SdkBody::from(
359            crate::protocol_serde::shape_put_object_lock_configuration_input::ser_object_lock_configuration_http_payload(
360                &input.object_lock_configuration,
361            )?,
362        );
363        if let Some(content_length) = body.content_length() {
364            let content_length = content_length.to_string();
365            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
366        }
367        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
368    }
369}
370#[derive(Debug)]
371struct PutObjectLockConfigurationEndpointParamsInterceptor;
372
373#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
374impl ::aws_smithy_runtime_api::client::interceptors::Intercept for PutObjectLockConfigurationEndpointParamsInterceptor {
375    fn name(&self) -> &'static str {
376        "PutObjectLockConfigurationEndpointParamsInterceptor"
377    }
378
379    fn read_before_execution(
380        &self,
381        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
382            '_,
383            ::aws_smithy_runtime_api::client::interceptors::context::Input,
384            ::aws_smithy_runtime_api::client::interceptors::context::Output,
385            ::aws_smithy_runtime_api::client::interceptors::context::Error,
386        >,
387        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
388    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
389        let _input = context
390            .input()
391            .downcast_ref::<PutObjectLockConfigurationInput>()
392            .ok_or("failed to downcast to PutObjectLockConfigurationInput")?;
393
394        let params = crate::config::endpoint::Params::builder()
395            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
396            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
397            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
398            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
399            .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
400            .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
401            .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
402            .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
403            .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
404            .set_bucket(Some(
405                _input
406                    .bucket
407                    .clone()
408                    .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
409                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
410            ))
411            .build()
412            .map_err(|err| {
413                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
414            })?;
415        cfg.interceptor_state()
416            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
417        ::std::result::Result::Ok(())
418    }
419}
420
421// The get_* functions below are generated from JMESPath expressions in the
422// operationContextParams trait. They target the operation's input shape.
423
424/// Error type for the `PutObjectLockConfigurationError` operation.
425#[non_exhaustive]
426#[derive(::std::fmt::Debug)]
427pub enum PutObjectLockConfigurationError {
428    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
429    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
430    variable wildcard pattern and check `.code()`:
431     \
432    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
433     \
434    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-PutObjectLockConfigurationError) for what information is available for the error.")]
435    Unhandled(crate::error::sealed_unhandled::Unhandled),
436}
437impl PutObjectLockConfigurationError {
438    /// Creates the `PutObjectLockConfigurationError::Unhandled` variant from any error type.
439    pub fn unhandled(
440        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
441    ) -> Self {
442        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
443            source: err.into(),
444            meta: ::std::default::Default::default(),
445        })
446    }
447
448    /// Creates the `PutObjectLockConfigurationError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
449    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
450        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
451            source: err.clone().into(),
452            meta: err,
453        })
454    }
455    ///
456    /// Returns error metadata, which includes the error code, message,
457    /// request ID, and potentially additional information.
458    ///
459    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
460        match self {
461            Self::Unhandled(e) => &e.meta,
462        }
463    }
464}
465impl ::std::error::Error for PutObjectLockConfigurationError {
466    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
467        match self {
468            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
469        }
470    }
471}
472impl ::std::fmt::Display for PutObjectLockConfigurationError {
473    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
474        match self {
475            Self::Unhandled(_inner) => {
476                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
477                    write!(f, "unhandled error ({code})")
478                } else {
479                    f.write_str("unhandled error")
480                }
481            }
482        }
483    }
484}
485impl ::aws_smithy_types::retry::ProvideErrorKind for PutObjectLockConfigurationError {
486    fn code(&self) -> ::std::option::Option<&str> {
487        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
488    }
489    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
490        ::std::option::Option::None
491    }
492}
493impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for PutObjectLockConfigurationError {
494    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
495        match self {
496            Self::Unhandled(_inner) => &_inner.meta,
497        }
498    }
499}
500impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for PutObjectLockConfigurationError {
501    fn create_unhandled_error(
502        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
503        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
504    ) -> Self {
505        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
506            source,
507            meta: meta.unwrap_or_default(),
508        })
509    }
510}
511impl crate::s3_request_id::RequestIdExt for crate::operation::put_object_lock_configuration::PutObjectLockConfigurationError {
512    fn extended_request_id(&self) -> Option<&str> {
513        self.meta().extended_request_id()
514    }
515}
516impl ::aws_types::request_id::RequestId for crate::operation::put_object_lock_configuration::PutObjectLockConfigurationError {
517    fn request_id(&self) -> Option<&str> {
518        self.meta().request_id()
519    }
520}
521
522pub use crate::operation::put_object_lock_configuration::_put_object_lock_configuration_input::PutObjectLockConfigurationInput;
523
524pub use crate::operation::put_object_lock_configuration::_put_object_lock_configuration_output::PutObjectLockConfigurationOutput;
525
526mod _put_object_lock_configuration_input;
527
528mod _put_object_lock_configuration_output;
529
530/// Builders
531pub mod builders;