Skip to main content

aws_sdk_securityhub/protocol_serde/
shape_aws_ecs_service_network_configuration_details.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub fn ser_aws_ecs_service_network_configuration_details(
3    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
4    input: &crate::types::AwsEcsServiceNetworkConfigurationDetails,
5) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
6    if let Some(var_1) = &input.aws_vpc_configuration {
7        #[allow(unused_mut)]
8        let mut object_2 = object.key("AwsVpcConfiguration").start_object();
9        crate::protocol_serde::shape_aws_ecs_service_network_configuration_aws_vpc_configuration_details::ser_aws_ecs_service_network_configuration_aws_vpc_configuration_details(&mut object_2, var_1)?;
10        object_2.finish();
11    }
12    Ok(())
13}
14
15pub(crate) fn de_aws_ecs_service_network_configuration_details<'a, I>(
16    tokens: &mut ::std::iter::Peekable<I>,
17    _value: &'a [u8],
18) -> ::std::result::Result<Option<crate::types::AwsEcsServiceNetworkConfigurationDetails>, ::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::AwsEcsServiceNetworkConfigurationDetailsBuilder::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                        "AwsVpcConfiguration" => {
32                            builder = builder.set_aws_vpc_configuration(
33                                    crate::protocol_serde::shape_aws_ecs_service_network_configuration_aws_vpc_configuration_details::de_aws_ecs_service_network_configuration_aws_vpc_configuration_details(tokens, _value)?
34                                );
35                        }
36                        _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
37                    },
38                    other => {
39                        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
40                            "expected object key or end object, found: {other:?}"
41                        )))
42                    }
43                }
44            }
45            Ok(Some(builder.build()))
46        }
47        _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
48            "expected start object or null",
49        )),
50    }
51}