aws_sdk_apigatewayv2/protocol_serde/
shape_deployment.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2pub(crate) fn de_deployment<'a, I>(
3    tokens: &mut ::std::iter::Peekable<I>,
4) -> ::std::result::Result<Option<crate::types::Deployment>, ::aws_smithy_json::deserialize::error::DeserializeError>
5where
6    I: Iterator<Item = Result<::aws_smithy_json::deserialize::Token<'a>, ::aws_smithy_json::deserialize::error::DeserializeError>>,
7{
8    match tokens.next().transpose()? {
9        Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
10        Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
11            #[allow(unused_mut)]
12            let mut builder = crate::types::builders::DeploymentBuilder::default();
13            loop {
14                match tokens.next().transpose()? {
15                    Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
16                    Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => match key.to_unescaped()?.as_ref() {
17                        "autoDeployed" => {
18                            builder = builder.set_auto_deployed(::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?);
19                        }
20                        "createdDate" => {
21                            builder = builder.set_created_date(::aws_smithy_json::deserialize::token::expect_timestamp_or_null(
22                                tokens.next(),
23                                ::aws_smithy_types::date_time::Format::DateTimeWithOffset,
24                            )?);
25                        }
26                        "deploymentId" => {
27                            builder = builder.set_deployment_id(
28                                ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
29                                    .map(|s| s.to_unescaped().map(|u| u.into_owned()))
30                                    .transpose()?,
31                            );
32                        }
33                        "deploymentStatus" => {
34                            builder = builder.set_deployment_status(
35                                ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
36                                    .map(|s| s.to_unescaped().map(|u| crate::types::DeploymentStatus::from(u.as_ref())))
37                                    .transpose()?,
38                            );
39                        }
40                        "deploymentStatusMessage" => {
41                            builder = builder.set_deployment_status_message(
42                                ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
43                                    .map(|s| s.to_unescaped().map(|u| u.into_owned()))
44                                    .transpose()?,
45                            );
46                        }
47                        "description" => {
48                            builder = builder.set_description(
49                                ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?
50                                    .map(|s| s.to_unescaped().map(|u| u.into_owned()))
51                                    .transpose()?,
52                            );
53                        }
54                        _ => ::aws_smithy_json::deserialize::token::skip_value(tokens)?,
55                    },
56                    other => {
57                        return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
58                            "expected object key or end object, found: {:?}",
59                            other
60                        )))
61                    }
62                }
63            }
64            Ok(Some(builder.build()))
65        }
66        _ => Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(
67            "expected start object or null",
68        )),
69    }
70}