1 - | // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
|
2 - | pub fn ser_s3_configuration(
|
3 - | object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
|
4 - | input: &crate::types::S3Configuration,
|
5 - | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
|
6 - | {
|
7 - | object.key("BucketName").string(input.bucket_name.as_str());
|
8 - | }
|
9 - | if let Some(var_1) = &input.object_key_prefix {
|
10 - | object.key("ObjectKeyPrefix").string(var_1.as_str());
|
11 - | }
|
12 - | if let Some(var_2) = &input.encryption_option {
|
13 - | object.key("EncryptionOption").string(var_2.as_str());
|
14 - | }
|
15 - | Ok(())
|
16 - | }
|
17 - |
|
18 - | pub(crate) fn de_s3_configuration<'a, I>(
|
19 - | tokens: &mut ::std::iter::Peekable<I>,
|
20 - | _value: &'a [u8],
|
21 - | ) -> ::std::result::Result<Option<crate::types::S3Configuration>, ::aws_smithy_json::deserialize::error::DeserializeError>
|
22 - | where
|
23 - | I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
|
24 - | {
|
25 - | match tokens.next().transpose()? {
|
26 - | Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
|
27 - | Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
|
28 - | #[allow(unused_mut)]
|
29 - | let mut builder = crate::types::builders::S3ConfigurationBuilder::default();
|
30 - | loop {
|
31 - | match tokens.next().transpose()? {
|
32 - | Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
|
33 - | Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
|
34 - | "BucketName" => {
|
35 - | builder = builder.set_bucket_name(
|
36 - | ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
|
37 - | .map(|s| s.to_unescaped().map(|u| u.into_owned()))
|
38 - | .transpose()?,
|
39 - | );
|
40 - | }
|
41 - | "ObjectKeyPrefix" => {
|
42 - | builder = builder.set_object_key_prefix(
|
43 - | ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
|
44 - | .map(|s| s.to_unescaped().map(|u| u.into_owned()))
|
45 - | .transpose()?,
|
46 - | );
|
47 - | }
|
48 - | "EncryptionOption" => {
|
49 - | builder = builder.set_encryption_option(
|
50 - | ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
|
51 - | .map(|s| s.to_unescaped().map(|u| crate::types::S3EncryptionOption::from(u.as_ref())))
|
52 - | .transpose()?,
|
53 - | );
|
54 - | }
|
55 - | _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
|
56 - | },
|
57 - | other => {
|
58 - | return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
|
59 - | "expected object key or end object, found: {other:?}"
|
60 - | )))
|
61 - | }
|
62 - | }
|
63 - | }
|
64 - | Ok(Some(crate::serde_util::s3_configuration_correct_errors(builder).build().map_err(
|
65 - | |err| ::aws_smithy_json::deserialize::error::DeserializeError::custom_source("Response was invalid", err),
|
66 - | )?))
|
67 - | }
|
68 - | _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
69 - | "expected start object or null",
|
70 - | )),
|
71 - | }
|
72 - | }
|