pub fn ser_describe_matchmaking_configurations_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::describe_matchmaking_configurations::DescribeMatchmakingConfigurationsInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.names {
encoder.str("Names");
encoder.array((*var_1).len());
for item_2 in var_1 {
{
encoder.str(item_2.as_str());
}
}
}
if let Some(var_3) = &input.rule_set_name {
encoder.str("RuleSetName").str(var_3.as_str());
}
if let Some(var_4) = &input.limit {
encoder.str("Limit").integer(*var_4);
}
if let Some(var_5) = &input.next_token {
encoder.str("NextToken").str(var_5.as_str());
}
encoder.end();
Ok(())
}