1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateBucketMetadataTableConfiguration;
6impl CreateBucketMetadataTableConfiguration {
7    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        .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::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
137            .with_interceptor(CreateBucketMetadataTableConfigurationEndpointParamsInterceptor)
138            .with_interceptor(crate::http_request_checksum::RequestChecksumInterceptor::new(
139                |input: &::aws_smithy_runtime_api::client::interceptors::context::Input| {
140                    let input: &crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationInput =
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                    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                    let user_set_checksum_algo = request.headers().get("x-amz-sdk-checksum-algorithm").is_some();
162
163                    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                    let http_checksum_required = true;
170
171                    let is_presigned_req = cfg.load::<crate::presigning::PresigningMarker>().is_some();
172
173                    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                    Ok(user_set_checksum_value)
195                },
196            ))
197            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
198                crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationError,
199            >::new())
200            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
201                crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationError,
202            >::new())
203            .with_retry_classifier(
204                ::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
205                    crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationError,
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 CreateBucketMetadataTableConfigurationResponseDeserializer;
221impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateBucketMetadataTableConfigurationResponseDeserializer {
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_create_bucket_metadata_table_configuration::de_create_bucket_metadata_table_configuration_http_error(
238                status, headers, body,
239            )
240        } else {
241            crate::protocol_serde::shape_create_bucket_metadata_table_configuration::de_create_bucket_metadata_table_configuration_http_response(
242                status, headers, body,
243            )
244        };
245        crate::protocol_serde::type_erase_result(parse_result)
246    }
247}
248#[derive(Debug)]
249struct CreateBucketMetadataTableConfigurationRequestSerializer;
250impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateBucketMetadataTableConfigurationRequestSerializer {
251    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
252    fn serialize_input(
253        &self,
254        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
255        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
256    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
257        let input = input
258            .downcast::<crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationInput>()
259            .expect("correct type");
260        let _header_serialization_settings = _cfg
261            .load::<crate::serialization_settings::HeaderSerializationSettings>()
262            .cloned()
263            .unwrap_or_default();
264        let mut request_builder = {
265            fn uri_base(
266                _input: &crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationInput,
267                output: &mut ::std::string::String,
268            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
269                use ::std::fmt::Write as _;
270                ::std::write!(output, "/").expect("formatting should succeed");
271                ::std::result::Result::Ok(())
272            }
273            fn uri_query(
274                _input: &crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationInput,
275                mut output: &mut ::std::string::String,
276            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
277                let mut query = ::aws_smithy_http::query::Writer::new(output);
278                query.push_v("metadataTable");
279                ::std::result::Result::Ok(())
280            }
281            #[allow(clippy::unnecessary_wraps)]
282            fn update_http_builder(
283                input: &crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationInput,
284                builder: ::http::request::Builder,
285            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
286                let mut uri = ::std::string::String::new();
287                uri_base(input, &mut uri)?;
288                uri_query(input, &mut uri)?;
289                let builder =
290                    crate::protocol_serde::shape_create_bucket_metadata_table_configuration::ser_create_bucket_metadata_table_configuration_headers(
291                        input, builder,
292                    )?;
293                ::std::result::Result::Ok(builder.method("POST").uri(uri))
294            }
295            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
296            builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/xml");
297            builder
298        };
299        let body = ::aws_smithy_types::body::SdkBody::from(
300            crate::protocol_serde::shape_create_bucket_metadata_table_configuration_input::ser_metadata_table_configuration_http_payload(
301                &input.metadata_table_configuration,
302            )?,
303        );
304        if let Some(content_length) = body.content_length() {
305            let content_length = content_length.to_string();
306            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
307        }
308        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
309    }
310}
311#[derive(Debug)]
312struct CreateBucketMetadataTableConfigurationEndpointParamsInterceptor;
313
314impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateBucketMetadataTableConfigurationEndpointParamsInterceptor {
315    fn name(&self) -> &'static str {
316        "CreateBucketMetadataTableConfigurationEndpointParamsInterceptor"
317    }
318
319    fn read_before_execution(
320        &self,
321        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
322            '_,
323            ::aws_smithy_runtime_api::client::interceptors::context::Input,
324            ::aws_smithy_runtime_api::client::interceptors::context::Output,
325            ::aws_smithy_runtime_api::client::interceptors::context::Error,
326        >,
327        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
328    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
329        let _input = context
330            .input()
331            .downcast_ref::<CreateBucketMetadataTableConfigurationInput>()
332            .ok_or("failed to downcast to CreateBucketMetadataTableConfigurationInput")?;
333
334        let params = crate::config::endpoint::Params::builder()
335            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
336            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
337            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
338            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
339            .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
340            .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
341            .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
342            .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
343            .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
344            .set_use_s3_express_control_endpoint(Some(true))
345            .set_bucket(Some(
346                _input
347                    .bucket
348                    .clone()
349                    .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
350                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
351            ))
352            .build()
353            .map_err(|err| {
354                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
355            })?;
356        cfg.interceptor_state()
357            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
358        ::std::result::Result::Ok(())
359    }
360}
361
362#[non_exhaustive]
367#[derive(::std::fmt::Debug)]
368pub enum CreateBucketMetadataTableConfigurationError {
369    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
371    variable wildcard pattern and check `.code()`:
372     \
373       `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
374     \
375    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateBucketMetadataTableConfigurationError) for what information is available for the error.")]
376    Unhandled(crate::error::sealed_unhandled::Unhandled),
377}
378impl CreateBucketMetadataTableConfigurationError {
379    pub fn unhandled(
381        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
382    ) -> Self {
383        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
384            source: err.into(),
385            meta: ::std::default::Default::default(),
386        })
387    }
388
389    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
391        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
392            source: err.clone().into(),
393            meta: err,
394        })
395    }
396    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
401        match self {
402            Self::Unhandled(e) => &e.meta,
403        }
404    }
405}
406impl ::std::error::Error for CreateBucketMetadataTableConfigurationError {
407    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
408        match self {
409            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
410        }
411    }
412}
413impl ::std::fmt::Display for CreateBucketMetadataTableConfigurationError {
414    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
415        match self {
416            Self::Unhandled(_inner) => {
417                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
418                    write!(f, "unhandled error ({code})")
419                } else {
420                    f.write_str("unhandled error")
421                }
422            }
423        }
424    }
425}
426impl ::aws_smithy_types::retry::ProvideErrorKind for CreateBucketMetadataTableConfigurationError {
427    fn code(&self) -> ::std::option::Option<&str> {
428        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
429    }
430    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
431        ::std::option::Option::None
432    }
433}
434impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateBucketMetadataTableConfigurationError {
435    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
436        match self {
437            Self::Unhandled(_inner) => &_inner.meta,
438        }
439    }
440}
441impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateBucketMetadataTableConfigurationError {
442    fn create_unhandled_error(
443        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
444        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
445    ) -> Self {
446        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
447            source,
448            meta: meta.unwrap_or_default(),
449        })
450    }
451}
452impl crate::s3_request_id::RequestIdExt
453    for crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationError
454{
455    fn extended_request_id(&self) -> Option<&str> {
456        self.meta().extended_request_id()
457    }
458}
459impl ::aws_types::request_id::RequestId
460    for crate::operation::create_bucket_metadata_table_configuration::CreateBucketMetadataTableConfigurationError
461{
462    fn request_id(&self) -> Option<&str> {
463        self.meta().request_id()
464    }
465}
466
467pub use crate::operation::create_bucket_metadata_table_configuration::_create_bucket_metadata_table_configuration_output::CreateBucketMetadataTableConfigurationOutput;
468
469pub use crate::operation::create_bucket_metadata_table_configuration::_create_bucket_metadata_table_configuration_input::CreateBucketMetadataTableConfigurationInput;
470
471mod _create_bucket_metadata_table_configuration_input;
472
473mod _create_bucket_metadata_table_configuration_output;
474
475pub mod builders;