// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_disable_insight_rules_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::disable_insight_rules::DisableInsightRulesInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.rule_names {
encoder.str("RuleNames");
encoder.array((*var_1).len());
for item_2 in var_1 {
{
encoder.str(item_2.as_str());
}
}
}
encoder.end();
Ok(())
}