aws-sdk-drs 1.114.0

AWS SDK for Elastic Disaster Recovery Service
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_reorder_recovery_plan_steps_input_input(
    object: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::operation::reorder_recovery_plan_steps::ReorderRecoveryPlanStepsInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    if let Some(var_1) = &input.ordered_step_arns {
        let mut array_2 = object.key("orderedStepArns").start_array();
        for item_3 in var_1 {
            {
                array_2.value().string(item_3.as_str());
            }
        }
        array_2.finish();
    }
    if let Some(var_4) = &input.recovery_plan_arn {
        object.key("recoveryPlanArn").string(var_4.as_str());
    }
    Ok(())
}