#[allow(unused_mut)]
pub fn ser_external_authority_configuration(
mut writer: ::aws_smithy_query::QueryValueWriter,
input: &crate::types::ExternalAuthorityConfiguration,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
#[allow(unused_mut)]
let mut scope_1 = writer.prefix("Type");
if let Some(var_2) = &input.r#type {
scope_1.string(var_2.as_str());
}
#[allow(unused_mut)]
let mut scope_3 = writer.prefix("ExternalResourceIdentifier");
if let Some(var_4) = &input.external_resource_identifier {
scope_3.string(var_4);
}
Ok(())
}