Skip to main content

aws_sdk_emrcontainers/protocol_serde/
shape_retry_policy_configuration.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_retry_policy_configuration(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::types::RetryPolicyConfiguration,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    {
7        object.key("maxAttempts").number(
8            #[allow(clippy::useless_conversion)]
9            ::aws_smithy_types::Number::NegInt((input.max_attempts).into()),
10        );
11    }
12    Ok(())
13}
14
15pub(crate) fn de_retry_policy_configuration<'a, I>(
16    tokens: &mut ::std::iter::Peekable<I>,
17    _value: &'a [u8],
18) -> ::std::result::Result<Option<crate::types::RetryPolicyConfiguration>, ::aws_smithy_json::deserialize::error::DeserializeError>
19where
20    I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
21{
22    match tokens.next().transpose()? {
23        Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
24        Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
25            #[allow(unused_mut)]
26            let mut builder = crate::types::builders::RetryPolicyConfigurationBuilder::default();
27            loop {
28                match tokens.next().transpose()? {
29                    Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
30                    Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
31                        "maxAttempts" => {
32                            builder = builder.set_max_attempts(
33                                ::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
34                                    .map(i32::try_from)
35                                    .transpose()?,
36                            );
37                        }
38                        _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
39                    },
40                    other => {
41                        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
42                            "expected object key or end object, found: {other:?}"
43                        )))
44                    }
45                }
46            }
47            Ok(Some(
48                crate::serde_util::retry_policy_configuration_correct_errors(builder)
49                    .build()
50                    .map_err(|err| ::aws_smithy_json::deserialize::error::DeserializeError::custom_source("Response was invalid", err))?,
51            ))
52        }
53        _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
54            "expected start object or null",
55        )),
56    }
57}