aws_sdk_elasticloadbalancingv2/protocol_serde/
shape_delete_trust_store_input.rspub fn ser_delete_trust_store_input_input_input(
input: &crate::operation::delete_trust_store::DeleteTrustStoreInput,
) -> 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, "DeleteTrustStore", "2015-12-01");
#[allow(unused_mut)]
let mut scope_1 = writer.prefix("TrustStoreArn");
if let Some(var_2) = &input.trust_store_arn {
scope_1.string(var_2);
}
writer.finish();
Ok(::aws_smithy_types::body::SdkBody::from(out))
}