aws-sdk-databasemigration 1.112.0

AWS SDK for AWS Database Migration Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_describe_metadata_model_children_input_input(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::operation::describe_metadata_model_children::DescribeMetadataModelChildrenInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    if let Some(var_1) = &input.selection_rules {
        object.key("SelectionRules").string(var_1.as_str());
    }
    if let Some(var_2) = &input.migration_project_identifier {
        object.key("MigrationProjectIdentifier").string(var_2.as_str());
    }
    if let Some(var_3) = &input.origin {
        object.key("Origin").string(var_3.as_str());
    }
    if let Some(var_4) = &input.marker {
        object.key("Marker").string(var_4.as_str());
    }
    if let Some(var_5) = &input.max_records {
        object.key("MaxRecords").number(
            #[allow(clippy::useless_conversion)]
            ::aws_smithy_types::Number::NegInt((*var_5).into()),
        );
    }
    Ok(())
}