aws_sdk_s3/operation/
put_bucket_lifecycle_configuration.rs

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