pub fn ser_list_service_versions_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::list_service_versions::ListServiceVersionsInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.service_name {
encoder.str("ServiceName").str(var_1.as_str());
}
if let Some(var_2) = &input.dependent_services {
encoder.str("DependentServices");
encoder.array((*var_2).len());
for item_3 in var_2 {
{
crate::protocol_serde::shape_dependent_service::ser_dependent_service(encoder, item_3)?;
}
}
}
if let Some(var_4) = &input.max_results {
encoder.str("MaxResults").integer(*var_4);
}
if let Some(var_5) = &input.next_token {
encoder.str("NextToken").str(var_5.as_str());
}
encoder.end();
Ok(())
}