Skip to main content

aws_sdk_s3/operation/
create_bucket_metadata_table_configuration.rs

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