Skip to main content

aws_sdk_networkfirewall/protocol_serde/
shape_custom_action.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_custom_action(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::types::CustomAction,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    {
7        object.key("ActionName").string(input.action_name.as_str());
8    }
9    if let Some(var_1) = &input.action_definition {
10        #[allow(unused_mut)]
11        let mut object_2 = object.key("ActionDefinition").start_object();
12        crate::protocol_serde::shape_action_definition::ser_action_definition(&mut object_2, var_1)?;
13        object_2.finish();
14    }
15    Ok(())
16}
17
18pub(crate) fn de_custom_action<'a, I>(
19    tokens: &mut ::std::iter::Peekable<I>,
20    _value: &'a [u8],
21) -> ::std::result::Result<Option<crate::types::CustomAction>, ::aws_smithy_json::deserialize::error::DeserializeError>
22where
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::CustomActionBuilder::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                        "ActionName" => {
35                            builder = builder.set_action_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                        "ActionDefinition" => {
42                            builder =
43                                builder.set_action_definition(crate::protocol_serde::shape_action_definition::de_action_definition(tokens, _value)?);
44                        }
45                        _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
46                    },
47                    other => {
48                        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
49                            "expected object key or end object, found: {other:?}"
50                        )))
51                    }
52                }
53            }
54            Ok(Some(crate::serde_util::custom_action_correct_errors(builder).build().map_err(|err| {
55                ::aws_smithy_json::deserialize::error::DeserializeError::custom_source("Response was invalid", err)
56            })?))
57        }
58        _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
59            "expected start object or null",
60        )),
61    }
62}