1#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct CreateBucketMetadataConfiguration;
6impl CreateBucketMetadataConfiguration {
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_configuration::CreateBucketMetadataConfigurationInput,
14 ) -> ::std::result::Result<
15 crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationOutput,
16 ::aws_smithy_runtime_api::client::result::SdkError<
17 crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationError,
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_configuration::CreateBucketMetadataConfigurationError>()
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_configuration::CreateBucketMetadataConfigurationOutput>()
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_configuration::CreateBucketMetadataConfigurationInput,
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 "CreateBucketMetadataConfiguration",
57 input,
58 runtime_plugins,
59 stop_point,
60 )
61 .instrument(::tracing::debug_span!(
64 "S3.CreateBucketMetadataConfiguration",
65 "rpc.service" = "S3",
66 "rpc.method" = "CreateBucketMetadataConfiguration",
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 CreateBucketMetadataConfiguration {
94 fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
95 let mut cfg = ::aws_smithy_types::config_bag::Layer::new("CreateBucketMetadataConfiguration");
96
97 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
98 CreateBucketMetadataConfigurationRequestSerializer,
99 ));
100 cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
101 CreateBucketMetadataConfigurationResponseDeserializer,
102 ));
103
104 cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
105 crate::config::auth::Params::builder()
106 .operation_name("CreateBucketMetadataConfiguration")
107 .build()
108 .expect("required fields set"),
109 ));
110
111 cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new(
112 "CreateBucketMetadataConfiguration",
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("CreateBucketMetadataConfiguration")
136 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
137 ::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default(),
138 ))
139 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
140 CreateBucketMetadataConfigurationEndpointParamsInterceptor,
141 ))
142 .with_interceptor(::aws_smithy_runtime_api::client::interceptors::SharedInterceptor::permanent(
143 crate::http_request_checksum::RequestChecksumInterceptor::new(
144 |input: &::aws_smithy_runtime_api::client::interceptors::context::Input| {
145 let input: &crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationInput =
146 input.downcast_ref().expect("correct type");
147 let checksum_algorithm = input.checksum_algorithm();
148 let checksum_algorithm = checksum_algorithm.map(|algorithm| algorithm.as_str());
149 (checksum_algorithm.map(|s| s.to_string()), true)
150 },
151 |request: &mut ::aws_smithy_runtime_api::http::Request, cfg: &::aws_smithy_types::config_bag::ConfigBag| {
152 let mut user_set_checksum_value = false;
154 let headers_to_check =
155 request
156 .headers()
157 .iter()
158 .filter_map(|(name, _val)| if name.starts_with("x-amz-checksum-") { Some(name) } else { None });
159 for algo_header in headers_to_check {
160 if request.headers().get(algo_header).is_some() {
161 user_set_checksum_value = true;
162 }
163 }
164
165 let user_set_checksum_algo = request.headers().get("x-amz-sdk-checksum-algorithm").is_some();
167
168 let request_checksum_calculation = cfg
170 .load::<::aws_smithy_types::checksum_config::RequestChecksumCalculation>()
171 .unwrap_or(&::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported);
172
173 let http_checksum_required = true;
175
176 let is_presigned_req = cfg.load::<crate::presigning::PresigningMarker>().is_some();
177
178 match (
183 request_checksum_calculation,
184 http_checksum_required,
185 user_set_checksum_value,
186 user_set_checksum_algo,
187 is_presigned_req,
188 ) {
189 (_, _, _, _, true) => {}
190 (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported, _, false, false, _)
191 | (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenRequired, true, false, false, _) => {
192 request.headers_mut().insert("x-amz-sdk-checksum-algorithm", "CRC32");
193 }
194 _ => {}
195 }
196
197 Ok(user_set_checksum_value)
200 },
201 ),
202 ))
203 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
204 crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationError,
205 >::new())
206 .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
207 crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationError,
208 >::new())
209 .with_retry_classifier(
210 ::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<
211 crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationError,
212 >::builder()
213 .transient_errors({
214 let mut transient_errors: Vec<&'static str> = ::aws_runtime::retries::classifiers::TRANSIENT_ERRORS.into();
215 transient_errors.push("InternalError");
216 ::std::borrow::Cow::Owned(transient_errors)
217 })
218 .build(),
219 );
220
221 ::std::borrow::Cow::Owned(rcb)
222 }
223}
224
225#[derive(Debug)]
226struct CreateBucketMetadataConfigurationResponseDeserializer;
227impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for CreateBucketMetadataConfigurationResponseDeserializer {
228 fn deserialize_nonstreaming_with_config(
229 &self,
230 response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
231 _cfg: &::aws_smithy_types::config_bag::ConfigBag,
232 ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
233 let (success, status) = (response.status().is_success(), response.status().as_u16());
234 let headers = response.headers();
235 let body = response.body().bytes().expect("body loaded");
236 #[allow(unused_mut)]
237 let mut force_error = false;
238 ::tracing::debug!(extended_request_id = ?crate::s3_request_id::RequestIdExt::extended_request_id(response));
239 if matches!(crate::rest_xml_unwrapped_errors::body_is_error(body), Ok(true)) {
240 force_error = true;
241 }
242 ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
243 let parse_result = if !success && status != 200 || force_error {
244 crate::protocol_serde::shape_create_bucket_metadata_configuration::de_create_bucket_metadata_configuration_http_error(
245 status, headers, body,
246 )
247 } else {
248 crate::protocol_serde::shape_create_bucket_metadata_configuration::de_create_bucket_metadata_configuration_http_response(
249 status, headers, body,
250 )
251 };
252 crate::protocol_serde::type_erase_result(parse_result)
253 }
254}
255#[derive(Debug)]
256struct CreateBucketMetadataConfigurationRequestSerializer;
257impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for CreateBucketMetadataConfigurationRequestSerializer {
258 #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
259 fn serialize_input(
260 &self,
261 input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
262 _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
263 ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
264 let input = input
265 .downcast::<crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationInput>()
266 .expect("correct type");
267 let _header_serialization_settings = _cfg
268 .load::<crate::serialization_settings::HeaderSerializationSettings>()
269 .cloned()
270 .unwrap_or_default();
271 let mut request_builder = {
272 #[allow(clippy::uninlined_format_args)]
273 fn uri_base(
274 _input: &crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationInput,
275 output: &mut ::std::string::String,
276 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
277 use ::std::fmt::Write as _;
278 ::std::write!(output, "/").expect("formatting should succeed");
279 ::std::result::Result::Ok(())
280 }
281 fn uri_query(
282 _input: &crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationInput,
283 mut output: &mut ::std::string::String,
284 ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
285 let mut query = ::aws_smithy_http::query::Writer::new(output);
286 query.push_v("metadataConfiguration");
287 ::std::result::Result::Ok(())
288 }
289 #[allow(clippy::unnecessary_wraps)]
290 fn update_http_builder(
291 input: &crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationInput,
292 builder: ::http_1x::request::Builder,
293 ) -> ::std::result::Result<::http_1x::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
294 let mut uri = ::std::string::String::new();
295 uri_base(input, &mut uri)?;
296 uri_query(input, &mut uri)?;
297 let builder = crate::protocol_serde::shape_create_bucket_metadata_configuration::ser_create_bucket_metadata_configuration_headers(
298 input, builder,
299 )?;
300 ::std::result::Result::Ok(builder.method("POST").uri(uri))
301 }
302 let mut builder = update_http_builder(&input, ::http_1x::request::Builder::new())?;
303 builder = _header_serialization_settings.set_default_header(builder, ::http_1x::header::CONTENT_TYPE, "application/xml");
304 builder
305 };
306 let body = ::aws_smithy_types::body::SdkBody::from(
307 crate::protocol_serde::shape_create_bucket_metadata_configuration_input::ser_metadata_configuration_http_payload(
308 &input.metadata_configuration,
309 )?,
310 );
311 if let Some(content_length) = body.content_length() {
312 let content_length = content_length.to_string();
313 request_builder = _header_serialization_settings.set_default_header(request_builder, ::http_1x::header::CONTENT_LENGTH, &content_length);
314 }
315 ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
316 }
317}
318#[derive(Debug)]
319struct CreateBucketMetadataConfigurationEndpointParamsInterceptor;
320
321#[::aws_smithy_runtime_api::client::interceptors::dyn_dispatch_hint]
322impl ::aws_smithy_runtime_api::client::interceptors::Intercept for CreateBucketMetadataConfigurationEndpointParamsInterceptor {
323 fn name(&self) -> &'static str {
324 "CreateBucketMetadataConfigurationEndpointParamsInterceptor"
325 }
326
327 fn read_before_execution(
328 &self,
329 context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
330 '_,
331 ::aws_smithy_runtime_api::client::interceptors::context::Input,
332 ::aws_smithy_runtime_api::client::interceptors::context::Output,
333 ::aws_smithy_runtime_api::client::interceptors::context::Error,
334 >,
335 cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
336 ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
337 let _input = context
338 .input()
339 .downcast_ref::<CreateBucketMetadataConfigurationInput>()
340 .ok_or("failed to downcast to CreateBucketMetadataConfigurationInput")?;
341
342 let params = crate::config::endpoint::Params::builder()
343 .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
344 .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
345 .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
346 .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
347 .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
348 .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
349 .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
350 .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
351 .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
352 .set_use_s3_express_control_endpoint(Some(true))
353 .set_bucket(Some(
354 _input
355 .bucket
356 .clone()
357 .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
358 .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
359 ))
360 .build()
361 .map_err(|err| {
362 ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
363 })?;
364 cfg.interceptor_state()
365 .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
366 ::std::result::Result::Ok(())
367 }
368}
369
370#[non_exhaustive]
375#[derive(::std::fmt::Debug)]
376pub enum CreateBucketMetadataConfigurationError {
377 #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
379 variable wildcard pattern and check `.code()`:
380 \
381 `err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
382 \
383 See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-CreateBucketMetadataConfigurationError) for what information is available for the error.")]
384 Unhandled(crate::error::sealed_unhandled::Unhandled),
385}
386impl CreateBucketMetadataConfigurationError {
387 pub fn unhandled(
389 err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
390 ) -> Self {
391 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
392 source: err.into(),
393 meta: ::std::default::Default::default(),
394 })
395 }
396
397 pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
399 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
400 source: err.clone().into(),
401 meta: err,
402 })
403 }
404 pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
409 match self {
410 Self::Unhandled(e) => &e.meta,
411 }
412 }
413}
414impl ::std::error::Error for CreateBucketMetadataConfigurationError {
415 fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
416 match self {
417 Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
418 }
419 }
420}
421impl ::std::fmt::Display for CreateBucketMetadataConfigurationError {
422 fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
423 match self {
424 Self::Unhandled(_inner) => {
425 if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
426 write!(f, "unhandled error ({code})")
427 } else {
428 f.write_str("unhandled error")
429 }
430 }
431 }
432 }
433}
434impl ::aws_smithy_types::retry::ProvideErrorKind for CreateBucketMetadataConfigurationError {
435 fn code(&self) -> ::std::option::Option<&str> {
436 ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
437 }
438 fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
439 ::std::option::Option::None
440 }
441}
442impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for CreateBucketMetadataConfigurationError {
443 fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
444 match self {
445 Self::Unhandled(_inner) => &_inner.meta,
446 }
447 }
448}
449impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for CreateBucketMetadataConfigurationError {
450 fn create_unhandled_error(
451 source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
452 meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
453 ) -> Self {
454 Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
455 source,
456 meta: meta.unwrap_or_default(),
457 })
458 }
459}
460impl crate::s3_request_id::RequestIdExt for crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationError {
461 fn extended_request_id(&self) -> Option<&str> {
462 self.meta().extended_request_id()
463 }
464}
465impl ::aws_types::request_id::RequestId for crate::operation::create_bucket_metadata_configuration::CreateBucketMetadataConfigurationError {
466 fn request_id(&self) -> Option<&str> {
467 self.meta().request_id()
468 }
469}
470
471pub use crate::operation::create_bucket_metadata_configuration::_create_bucket_metadata_configuration_input::CreateBucketMetadataConfigurationInput;
472
473pub use crate::operation::create_bucket_metadata_configuration::_create_bucket_metadata_configuration_output::CreateBucketMetadataConfigurationOutput;
474
475mod _create_bucket_metadata_configuration_input;
476
477mod _create_bucket_metadata_configuration_output;
478
479pub mod builders;