pub fn ser_get_target_selection_rules_input_input(
object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::operation::get_target_selection_rules::GetTargetSelectionRulesInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
if let Some(var_1) = &input.migration_project_identifier {
object.key("MigrationProjectIdentifier").string(var_1.as_str());
}
if let Some(var_2) = &input.selection_rules {
object.key("SelectionRules").string(var_2.as_str());
}
Ok(())
}