pub fn ser_bounce_action(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::types::BounceAction,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.action_failure_policy {
encoder.str("ActionFailurePolicy").str(var_1.as_str());
}
{
encoder.str("RoleArn").str(input.role_arn.as_str());
}
{
encoder.str("Sender").str(input.sender.as_str());
}
{
encoder.str("StatusCode").str(input.status_code.as_str());
}
{
encoder.str("SmtpReplyCode").str(input.smtp_reply_code.as_str());
}
{
encoder.str("DiagnosticMessage").str(input.diagnostic_message.as_str());
}
if let Some(var_2) = &input.message {
encoder.str("Message").str(var_2.as_str());
}
encoder.end();
Ok(())
}
pub(crate) fn de_bounce_action(
decoder: &mut ::aws_smithy_cbor::Decoder,
depth: u32,
) -> ::std::result::Result<crate::types::BounceAction, ::aws_smithy_cbor::decode::DeserializeError> {
if depth >= 128u32 {
return Err(::aws_smithy_cbor::decode::DeserializeError::custom(
"maximum nesting depth exceeded",
decoder.position(),
));
}
#[allow(clippy::match_single_binding, unused_variables)]
fn pair(
mut builder: crate::types::builders::BounceActionBuilder,
decoder: &mut ::aws_smithy_cbor::Decoder,
depth: u32,
) -> ::std::result::Result<crate::types::builders::BounceActionBuilder, ::aws_smithy_cbor::decode::DeserializeError> {
builder = match decoder.str()?.as_ref() {
"ActionFailurePolicy" => ::aws_smithy_cbor::decode::set_optional(builder, decoder, |builder, decoder| {
Ok(builder.set_action_failure_policy(Some(decoder.string().map(|s| crate::types::ActionFailurePolicy::from(s.as_ref()))?)))
})?,
"RoleArn" => builder.set_role_arn(Some(decoder.string()?)),
"Sender" => builder.set_sender(Some(decoder.string()?)),
"StatusCode" => builder.set_status_code(Some(decoder.string()?)),
"SmtpReplyCode" => builder.set_smtp_reply_code(Some(decoder.string()?)),
"DiagnosticMessage" => builder.set_diagnostic_message(Some(decoder.string()?)),
"Message" => {
::aws_smithy_cbor::decode::set_optional(builder, decoder, |builder, decoder| Ok(builder.set_message(Some(decoder.string()?))))?
}
_ => {
decoder.skip()?;
builder
}
};
Ok(builder)
}
let mut builder = crate::types::builders::BounceActionBuilder::default();
match decoder.map()? {
None => loop {
match decoder.datatype()? {
::aws_smithy_cbor::data::Type::Break => {
decoder.skip()?;
break;
}
_ => {
builder = pair(builder, decoder, depth)?;
}
};
},
Some(n) => {
for _ in 0..n {
builder = pair(builder, decoder, depth)?;
}
}
};
#[allow(clippy::needless_question_mark)]
{
return Ok(crate::serde_util::bounce_action_correct_errors(builder)
.build()
.map_err(|err| ::aws_smithy_cbor::decode::DeserializeError::custom(err.to_string(), decoder.position()))?);
}
}