aws_sdk_s3/operation/
put_object_acl.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2/// Orchestration and serialization glue logic for `PutObjectAcl`.
3#[derive(::std::clone::Clone, ::std::default::Default, ::std::fmt::Debug)]
4#[non_exhaustive]
5pub struct PutObjectAcl;
6impl PutObjectAcl {
7    /// Creates a new `PutObjectAcl`
8    pub fn new() -> Self {
9        Self
10    }
11    pub(crate) async fn orchestrate(
12        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
13        input: crate::operation::put_object_acl::PutObjectAclInput,
14    ) -> ::std::result::Result<
15        crate::operation::put_object_acl::PutObjectAclOutput,
16        ::aws_smithy_runtime_api::client::result::SdkError<
17            crate::operation::put_object_acl::PutObjectAclError,
18            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
19        >,
20    > {
21        let map_err = |err: ::aws_smithy_runtime_api::client::result::SdkError<
22            ::aws_smithy_runtime_api::client::interceptors::context::Error,
23            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
24        >| {
25            err.map_service_error(|err| {
26                err.downcast::<crate::operation::put_object_acl::PutObjectAclError>()
27                    .expect("correct error type")
28            })
29        };
30        use ::tracing::Instrument;
31        let context = Self::orchestrate_with_stop_point(runtime_plugins, input, ::aws_smithy_runtime::client::orchestrator::StopPoint::None)
32            // Create a parent span for the entire operation. Includes a random, internal-only,
33            // seven-digit ID for the operation orchestration so that it can be correlated in the logs.
34            .instrument(::tracing::debug_span!(
35                "s3.PutObjectAcl",
36                "rpc.service" = "s3",
37                "rpc.method" = "PutObjectAcl",
38                "sdk_invocation_id" = ::fastrand::u32(1_000_000..10_000_000),
39                "rpc.system" = "aws-api",
40            ))
41            .await
42            .map_err(map_err)?;
43        let output = context.finalize().map_err(map_err)?;
44        ::std::result::Result::Ok(
45            output
46                .downcast::<crate::operation::put_object_acl::PutObjectAclOutput>()
47                .expect("correct output type"),
48        )
49    }
50
51    pub(crate) async fn orchestrate_with_stop_point(
52        runtime_plugins: &::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
53        input: crate::operation::put_object_acl::PutObjectAclInput,
54        stop_point: ::aws_smithy_runtime::client::orchestrator::StopPoint,
55    ) -> ::std::result::Result<
56        ::aws_smithy_runtime_api::client::interceptors::context::InterceptorContext,
57        ::aws_smithy_runtime_api::client::result::SdkError<
58            ::aws_smithy_runtime_api::client::interceptors::context::Error,
59            ::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
60        >,
61    > {
62        let input = ::aws_smithy_runtime_api::client::interceptors::context::Input::erase(input);
63        ::aws_smithy_runtime::client::orchestrator::invoke_with_stop_point("s3", "PutObjectAcl", input, runtime_plugins, stop_point).await
64    }
65
66    pub(crate) fn operation_runtime_plugins(
67        client_runtime_plugins: ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins,
68        client_config: &crate::config::Config,
69        config_override: ::std::option::Option<crate::config::Builder>,
70    ) -> ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugins {
71        let mut runtime_plugins = client_runtime_plugins.with_operation_plugin(Self::new());
72        runtime_plugins = runtime_plugins.with_client_plugin(crate::auth_plugin::DefaultAuthOptionsPlugin::new(vec![
73            ::aws_runtime::auth::sigv4::SCHEME_ID,
74            #[cfg(feature = "sigv4a")]
75            {
76                ::aws_runtime::auth::sigv4a::SCHEME_ID
77            },
78            crate::s3_express::auth::SCHEME_ID,
79            ::aws_smithy_runtime::client::auth::no_auth::NO_AUTH_SCHEME_ID,
80        ]));
81        if let ::std::option::Option::Some(config_override) = config_override {
82            for plugin in config_override.runtime_plugins.iter().cloned() {
83                runtime_plugins = runtime_plugins.with_operation_plugin(plugin);
84            }
85            runtime_plugins = runtime_plugins.with_operation_plugin(crate::config::ConfigOverrideRuntimePlugin::new(
86                config_override,
87                client_config.config.clone(),
88                &client_config.runtime_components,
89            ));
90        }
91        runtime_plugins
92    }
93}
94impl ::aws_smithy_runtime_api::client::runtime_plugin::RuntimePlugin for PutObjectAcl {
95    fn config(&self) -> ::std::option::Option<::aws_smithy_types::config_bag::FrozenLayer> {
96        let mut cfg = ::aws_smithy_types::config_bag::Layer::new("PutObjectAcl");
97
98        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedRequestSerializer::new(
99            PutObjectAclRequestSerializer,
100        ));
101        cfg.store_put(::aws_smithy_runtime_api::client::ser_de::SharedResponseDeserializer::new(
102            PutObjectAclResponseDeserializer,
103        ));
104
105        cfg.store_put(::aws_smithy_runtime_api::client::auth::AuthSchemeOptionResolverParams::new(
106            ::aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolverParams::new(),
107        ));
108
109        cfg.store_put(::aws_smithy_runtime_api::client::orchestrator::Metadata::new("PutObjectAcl", "s3"));
110        let mut signing_options = ::aws_runtime::auth::SigningOptions::default();
111        signing_options.double_uri_encode = false;
112        signing_options.content_sha256_header = true;
113        signing_options.normalize_uri_path = false;
114        signing_options.payload_override = None;
115
116        cfg.store_put(::aws_runtime::auth::SigV4OperationSigningConfig {
117            signing_options,
118            ..::std::default::Default::default()
119        });
120        cfg.store_put(crate::s3_express::checksum::provide_default_checksum_algorithm());
121
122        ::std::option::Option::Some(cfg.freeze())
123    }
124
125    fn runtime_components(
126        &self,
127        _: &::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder,
128    ) -> ::std::borrow::Cow<'_, ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder> {
129        #[allow(unused_mut)]
130        let mut rcb = ::aws_smithy_runtime_api::client::runtime_components::RuntimeComponentsBuilder::new("PutObjectAcl")
131            .with_interceptor(::aws_smithy_runtime::client::stalled_stream_protection::StalledStreamProtectionInterceptor::default())
132            .with_interceptor(PutObjectAclEndpointParamsInterceptor)
133            .with_interceptor(crate::http_request_checksum::RequestChecksumInterceptor::new(
134                |input: &::aws_smithy_runtime_api::client::interceptors::context::Input| {
135                    let input: &crate::operation::put_object_acl::PutObjectAclInput = input.downcast_ref().expect("correct type");
136                    let checksum_algorithm = input.checksum_algorithm();
137                    let checksum_algorithm = checksum_algorithm.map(|algorithm| algorithm.as_str());
138                    (checksum_algorithm.map(|s| s.to_string()), true)
139                },
140                |request: &mut ::aws_smithy_runtime_api::http::Request, cfg: &::aws_smithy_types::config_bag::ConfigBag| {
141                    // We check if the user has set any of the checksum values manually
142                    let mut user_set_checksum_value = false;
143                    let headers_to_check =
144                        request
145                            .headers()
146                            .iter()
147                            .filter_map(|(name, _val)| if name.starts_with("x-amz-checksum-") { Some(name) } else { None });
148                    for algo_header in headers_to_check {
149                        if request.headers().get(algo_header).is_some() {
150                            user_set_checksum_value = true;
151                        }
152                    }
153
154                    // We check if the user set the checksum algo manually
155                    let user_set_checksum_algo = request.headers().get("x-amz-sdk-checksum-algorithm").is_some();
156
157                    // This value is set by the user on the SdkConfig to indicate their preference
158                    let request_checksum_calculation = cfg
159                        .load::<::aws_smithy_types::checksum_config::RequestChecksumCalculation>()
160                        .unwrap_or(&::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported);
161
162                    // From the httpChecksum trait
163                    let http_checksum_required = true;
164
165                    let is_presigned_req = cfg.load::<crate::presigning::PresigningMarker>().is_some();
166
167                    // If the request is presigned we do not set a default.
168                    // If the RequestChecksumCalculation is WhenSupported and the user has not set a checksum value or algo
169                    // we default to Crc32. If it is WhenRequired and a checksum is required by the trait and the user has not
170                    // set a checksum value or algo we also set the default. In all other cases we do nothing.
171                    match (
172                        request_checksum_calculation,
173                        http_checksum_required,
174                        user_set_checksum_value,
175                        user_set_checksum_algo,
176                        is_presigned_req,
177                    ) {
178                        (_, _, _, _, true) => {}
179                        (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenSupported, _, false, false, _)
180                        | (::aws_smithy_types::checksum_config::RequestChecksumCalculation::WhenRequired, true, false, false, _) => {
181                            request.headers_mut().insert("x-amz-sdk-checksum-algorithm", "CRC32");
182                        }
183                        _ => {}
184                    }
185
186                    // We return a bool indicating if the user did set the checksum value, if they did
187                    // we can short circuit and exit the interceptor early.
188                    Ok(user_set_checksum_value)
189                },
190            ))
191            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::TransientErrorClassifier::<
192                crate::operation::put_object_acl::PutObjectAclError,
193            >::new())
194            .with_retry_classifier(::aws_smithy_runtime::client::retries::classifiers::ModeledAsRetryableClassifier::<
195                crate::operation::put_object_acl::PutObjectAclError,
196            >::new())
197            .with_retry_classifier(
198                ::aws_runtime::retries::classifiers::AwsErrorCodeClassifier::<crate::operation::put_object_acl::PutObjectAclError>::builder()
199                    .transient_errors({
200                        let mut transient_errors: Vec<&'static str> = ::aws_runtime::retries::classifiers::TRANSIENT_ERRORS.into();
201                        transient_errors.push("InternalError");
202                        ::std::borrow::Cow::Owned(transient_errors)
203                    })
204                    .build(),
205            );
206
207        ::std::borrow::Cow::Owned(rcb)
208    }
209}
210
211#[derive(Debug)]
212struct PutObjectAclResponseDeserializer;
213impl ::aws_smithy_runtime_api::client::ser_de::DeserializeResponse for PutObjectAclResponseDeserializer {
214    fn deserialize_nonstreaming(
215        &self,
216        response: &::aws_smithy_runtime_api::client::orchestrator::HttpResponse,
217    ) -> ::aws_smithy_runtime_api::client::interceptors::context::OutputOrError {
218        let (success, status) = (response.status().is_success(), response.status().as_u16());
219        let headers = response.headers();
220        let body = response.body().bytes().expect("body loaded");
221        #[allow(unused_mut)]
222        let mut force_error = false;
223        ::tracing::debug!(extended_request_id = ?crate::s3_request_id::RequestIdExt::extended_request_id(response));
224        if matches!(crate::rest_xml_unwrapped_errors::body_is_error(body), Ok(true)) {
225            force_error = true;
226        }
227        ::tracing::debug!(request_id = ?::aws_types::request_id::RequestId::request_id(response));
228        let parse_result = if !success && status != 200 || force_error {
229            crate::protocol_serde::shape_put_object_acl::de_put_object_acl_http_error(status, headers, body)
230        } else {
231            crate::protocol_serde::shape_put_object_acl::de_put_object_acl_http_response(status, headers, body)
232        };
233        crate::protocol_serde::type_erase_result(parse_result)
234    }
235}
236#[derive(Debug)]
237struct PutObjectAclRequestSerializer;
238impl ::aws_smithy_runtime_api::client::ser_de::SerializeRequest for PutObjectAclRequestSerializer {
239    #[allow(unused_mut, clippy::let_and_return, clippy::needless_borrow, clippy::useless_conversion)]
240    fn serialize_input(
241        &self,
242        input: ::aws_smithy_runtime_api::client::interceptors::context::Input,
243        _cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
244    ) -> ::std::result::Result<::aws_smithy_runtime_api::client::orchestrator::HttpRequest, ::aws_smithy_runtime_api::box_error::BoxError> {
245        let input = input
246            .downcast::<crate::operation::put_object_acl::PutObjectAclInput>()
247            .expect("correct type");
248        let _header_serialization_settings = _cfg
249            .load::<crate::serialization_settings::HeaderSerializationSettings>()
250            .cloned()
251            .unwrap_or_default();
252        let mut request_builder = {
253            fn uri_base(
254                _input: &crate::operation::put_object_acl::PutObjectAclInput,
255                output: &mut ::std::string::String,
256            ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::BuildError> {
257                use ::std::fmt::Write as _;
258                let input_1 = &_input.key;
259                let input_1 = input_1
260                    .as_ref()
261                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("key", "cannot be empty or unset"))?;
262                let key = ::aws_smithy_http::label::fmt_string(input_1, ::aws_smithy_http::label::EncodingStrategy::Greedy);
263                if key.is_empty() {
264                    return ::std::result::Result::Err(::aws_smithy_types::error::operation::BuildError::missing_field(
265                        "key",
266                        "cannot be empty or unset",
267                    ));
268                }
269                ::std::write!(output, "/{Key}", Key = key).expect("formatting should succeed");
270                ::std::result::Result::Ok(())
271            }
272            fn uri_query(
273                _input: &crate::operation::put_object_acl::PutObjectAclInput,
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("acl");
278                if let ::std::option::Option::Some(inner_2) = &_input.version_id {
279                    {
280                        query.push_kv("versionId", &::aws_smithy_http::query::fmt_string(inner_2));
281                    }
282                }
283                ::std::result::Result::Ok(())
284            }
285            #[allow(clippy::unnecessary_wraps)]
286            fn update_http_builder(
287                input: &crate::operation::put_object_acl::PutObjectAclInput,
288                builder: ::http::request::Builder,
289            ) -> ::std::result::Result<::http::request::Builder, ::aws_smithy_types::error::operation::BuildError> {
290                let mut uri = ::std::string::String::new();
291                uri_base(input, &mut uri)?;
292                uri_query(input, &mut uri)?;
293                let builder = crate::protocol_serde::shape_put_object_acl::ser_put_object_acl_headers(input, builder)?;
294                ::std::result::Result::Ok(builder.method("PUT").uri(uri))
295            }
296            let mut builder = update_http_builder(&input, ::http::request::Builder::new())?;
297            builder = _header_serialization_settings.set_default_header(builder, ::http::header::CONTENT_TYPE, "application/xml");
298            builder
299        };
300        let body = ::aws_smithy_types::body::SdkBody::from(
301            crate::protocol_serde::shape_put_object_acl_input::ser_access_control_policy_http_payload(&input.access_control_policy)?,
302        );
303        if let Some(content_length) = body.content_length() {
304            let content_length = content_length.to_string();
305            request_builder = _header_serialization_settings.set_default_header(request_builder, ::http::header::CONTENT_LENGTH, &content_length);
306        }
307        ::std::result::Result::Ok(request_builder.body(body).expect("valid request").try_into().unwrap())
308    }
309}
310#[derive(Debug)]
311struct PutObjectAclEndpointParamsInterceptor;
312
313impl ::aws_smithy_runtime_api::client::interceptors::Intercept for PutObjectAclEndpointParamsInterceptor {
314    fn name(&self) -> &'static str {
315        "PutObjectAclEndpointParamsInterceptor"
316    }
317
318    fn read_before_execution(
319        &self,
320        context: &::aws_smithy_runtime_api::client::interceptors::context::BeforeSerializationInterceptorContextRef<
321            '_,
322            ::aws_smithy_runtime_api::client::interceptors::context::Input,
323            ::aws_smithy_runtime_api::client::interceptors::context::Output,
324            ::aws_smithy_runtime_api::client::interceptors::context::Error,
325        >,
326        cfg: &mut ::aws_smithy_types::config_bag::ConfigBag,
327    ) -> ::std::result::Result<(), ::aws_smithy_runtime_api::box_error::BoxError> {
328        let _input = context
329            .input()
330            .downcast_ref::<PutObjectAclInput>()
331            .ok_or("failed to downcast to PutObjectAclInput")?;
332
333        let params = crate::config::endpoint::Params::builder()
334            .set_region(cfg.load::<::aws_types::region::Region>().map(|r| r.as_ref().to_owned()))
335            .set_use_fips(cfg.load::<::aws_types::endpoint_config::UseFips>().map(|ty| ty.0))
336            .set_use_dual_stack(cfg.load::<::aws_types::endpoint_config::UseDualStack>().map(|ty| ty.0))
337            .set_endpoint(cfg.load::<::aws_types::endpoint_config::EndpointUrl>().map(|ty| ty.0.clone()))
338            .set_force_path_style(cfg.load::<crate::config::ForcePathStyle>().map(|ty| ty.0))
339            .set_use_arn_region(cfg.load::<crate::config::UseArnRegion>().map(|ty| ty.0))
340            .set_disable_multi_region_access_points(cfg.load::<crate::config::DisableMultiRegionAccessPoints>().map(|ty| ty.0))
341            .set_accelerate(cfg.load::<crate::config::Accelerate>().map(|ty| ty.0))
342            .set_disable_s3_express_session_auth(cfg.load::<crate::config::DisableS3ExpressSessionAuth>().map(|ty| ty.0))
343            .set_bucket(Some(
344                _input
345                    .bucket
346                    .clone()
347                    .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
348                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("bucket", "A required field was not set"))?,
349            ))
350            .set_key(Some(
351                _input
352                    .key
353                    .clone()
354                    .filter(|f| !AsRef::<str>::as_ref(f).trim().is_empty())
355                    .ok_or_else(|| ::aws_smithy_types::error::operation::BuildError::missing_field("key", "A required field was not set"))?,
356            ))
357            .build()
358            .map_err(|err| {
359                ::aws_smithy_runtime_api::client::interceptors::error::ContextAttachedError::new("endpoint params could not be built", err)
360            })?;
361        cfg.interceptor_state()
362            .store_put(::aws_smithy_runtime_api::client::endpoint::EndpointResolverParams::new(params));
363        ::std::result::Result::Ok(())
364    }
365}
366
367// The get_* functions below are generated from JMESPath expressions in the
368// operationContextParams trait. They target the operation's input shape.
369
370/// Error type for the `PutObjectAclError` operation.
371#[non_exhaustive]
372#[derive(::std::fmt::Debug)]
373pub enum PutObjectAclError {
374    /// <p>The specified key does not exist.</p>
375    NoSuchKey(crate::types::error::NoSuchKey),
376    /// An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
377    #[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
378    variable wildcard pattern and check `.code()`:
379     \
380    &nbsp;&nbsp;&nbsp;`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
381     \
382    See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-PutObjectAclError) for what information is available for the error.")]
383    Unhandled(crate::error::sealed_unhandled::Unhandled),
384}
385impl PutObjectAclError {
386    /// Creates the `PutObjectAclError::Unhandled` variant from any error type.
387    pub fn unhandled(
388        err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
389    ) -> Self {
390        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
391            source: err.into(),
392            meta: ::std::default::Default::default(),
393        })
394    }
395
396    /// Creates the `PutObjectAclError::Unhandled` variant from an [`ErrorMetadata`](::aws_smithy_types::error::ErrorMetadata).
397    pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
398        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
399            source: err.clone().into(),
400            meta: err,
401        })
402    }
403    ///
404    /// Returns error metadata, which includes the error code, message,
405    /// request ID, and potentially additional information.
406    ///
407    pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
408        match self {
409            Self::NoSuchKey(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
410            Self::Unhandled(e) => &e.meta,
411        }
412    }
413    /// Returns `true` if the error kind is `PutObjectAclError::NoSuchKey`.
414    pub fn is_no_such_key(&self) -> bool {
415        matches!(self, Self::NoSuchKey(_))
416    }
417}
418impl ::std::error::Error for PutObjectAclError {
419    fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
420        match self {
421            Self::NoSuchKey(_inner) => ::std::option::Option::Some(_inner),
422            Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
423        }
424    }
425}
426impl ::std::fmt::Display for PutObjectAclError {
427    fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
428        match self {
429            Self::NoSuchKey(_inner) => _inner.fmt(f),
430            Self::Unhandled(_inner) => {
431                if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
432                    write!(f, "unhandled error ({code})")
433                } else {
434                    f.write_str("unhandled error")
435                }
436            }
437        }
438    }
439}
440impl ::aws_smithy_types::retry::ProvideErrorKind for PutObjectAclError {
441    fn code(&self) -> ::std::option::Option<&str> {
442        ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
443    }
444    fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
445        ::std::option::Option::None
446    }
447}
448impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for PutObjectAclError {
449    fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
450        match self {
451            Self::NoSuchKey(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
452            Self::Unhandled(_inner) => &_inner.meta,
453        }
454    }
455}
456impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for PutObjectAclError {
457    fn create_unhandled_error(
458        source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
459        meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
460    ) -> Self {
461        Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
462            source,
463            meta: meta.unwrap_or_default(),
464        })
465    }
466}
467impl crate::s3_request_id::RequestIdExt for crate::operation::put_object_acl::PutObjectAclError {
468    fn extended_request_id(&self) -> Option<&str> {
469        self.meta().extended_request_id()
470    }
471}
472impl ::aws_types::request_id::RequestId for crate::operation::put_object_acl::PutObjectAclError {
473    fn request_id(&self) -> Option<&str> {
474        self.meta().request_id()
475    }
476}
477
478pub use crate::operation::put_object_acl::_put_object_acl_output::PutObjectAclOutput;
479
480pub use crate::operation::put_object_acl::_put_object_acl_input::PutObjectAclInput;
481
482mod _put_object_acl_input;
483
484mod _put_object_acl_output;
485
486/// Builders
487pub mod builders;