pub fn ser_create_custom_verification_email_template_input_input_input(
input: &crate::operation::create_custom_verification_email_template::CreateCustomVerificationEmailTemplateInput,
) -> ::std::result::Result<::aws_smithy_types::body::SdkBody, ::aws_smithy_types::error::operation::SerializationError> {
let mut out = String::new();
#[allow(unused_mut)]
let mut writer = ::aws_smithy_query::QueryWriter::new(&mut out, "CreateCustomVerificationEmailTemplate", "2010-12-01");
#[allow(unused_mut)]
let mut scope_1 = writer.prefix("TemplateName");
if let Some(var_2) = &input.template_name {
scope_1.string(var_2);
}
#[allow(unused_mut)]
let mut scope_3 = writer.prefix("FromEmailAddress");
if let Some(var_4) = &input.from_email_address {
scope_3.string(var_4);
}
#[allow(unused_mut)]
let mut scope_5 = writer.prefix("TemplateSubject");
if let Some(var_6) = &input.template_subject {
scope_5.string(var_6);
}
#[allow(unused_mut)]
let mut scope_7 = writer.prefix("TemplateContent");
if let Some(var_8) = &input.template_content {
scope_7.string(var_8);
}
#[allow(unused_mut)]
let mut scope_9 = writer.prefix("SuccessRedirectionURL");
if let Some(var_10) = &input.success_redirection_url {
scope_9.string(var_10);
}
#[allow(unused_mut)]
let mut scope_11 = writer.prefix("FailureRedirectionURL");
if let Some(var_12) = &input.failure_redirection_url {
scope_11.string(var_12);
}
writer.finish();
Ok(::aws_smithy_types::body::SdkBody::from(out))
}