1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
pub fn ser_campaign_limits(
object: &mut aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::types::CampaignLimits,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
if input.daily != 0 {
object.key("Daily").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.daily).into()),
);
}
if input.maximum_duration != 0 {
object.key("MaximumDuration").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.maximum_duration).into()),
);
}
if input.messages_per_second != 0 {
object.key("MessagesPerSecond").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.messages_per_second).into()),
);
}
if input.total != 0 {
object.key("Total").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.total).into()),
);
}
if input.session != 0 {
object.key("Session").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.session).into()),
);
}
Ok(())
}
pub(crate) fn de_campaign_limits<'a, I>(
tokens: &mut std::iter::Peekable<I>,
) -> Result<
Option<crate::types::CampaignLimits>,
aws_smithy_json::deserialize::error::DeserializeError,
>
where
I: Iterator<
Item = Result<
aws_smithy_json::deserialize::Token<'a>,
aws_smithy_json::deserialize::error::DeserializeError,
>,
>,
{
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::ValueNull { .. }) => Ok(None),
Some(aws_smithy_json::deserialize::Token::StartObject { .. }) => {
#[allow(unused_mut)]
let mut builder = crate::types::builders::CampaignLimitsBuilder::default();
loop {
match tokens.next().transpose()? {
Some(aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
Some(aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
match key.to_unescaped()?.as_ref() {
"Daily" => {
builder = builder.set_daily(
aws_smithy_json::deserialize::token::expect_number_or_null(
tokens.next(),
)?
.map(i32::try_from)
.transpose()?,
);
}
"MaximumDuration" => {
builder = builder.set_maximum_duration(
aws_smithy_json::deserialize::token::expect_number_or_null(
tokens.next(),
)?
.map(i32::try_from)
.transpose()?,
);
}
"MessagesPerSecond" => {
builder = builder.set_messages_per_second(
aws_smithy_json::deserialize::token::expect_number_or_null(
tokens.next(),
)?
.map(i32::try_from)
.transpose()?,
);
}
"Total" => {
builder = builder.set_total(
aws_smithy_json::deserialize::token::expect_number_or_null(
tokens.next(),
)?
.map(i32::try_from)
.transpose()?,
);
}
"Session" => {
builder = builder.set_session(
aws_smithy_json::deserialize::token::expect_number_or_null(
tokens.next(),
)?
.map(i32::try_from)
.transpose()?,
);
}
_ => aws_smithy_json::deserialize::token::skip_value(tokens)?,
}
}
other => {
return Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
"expected object key or end object, found: {:?}",
other
)),
)
}
}
}
Ok(Some(builder.build()))
}
_ => Err(
aws_smithy_json::deserialize::error::DeserializeError::custom(
"expected start object or null",
),
),
}
}