aws-sdk-ec2 1.218.0

AWS SDK for Amazon Elastic Compute Cloud
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(unused_mut)]
pub fn ser_capacity_reservation_specification(
    mut writer: ::aws_smithy_query::QueryValueWriter,
    input: &crate::types::CapacityReservationSpecification,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    #[allow(unused_mut)]
    let mut scope_1 = writer.prefix("CapacityReservationPreference");
    if let Some(var_2) = &input.capacity_reservation_preference {
        scope_1.string(var_2.as_str());
    }
    #[allow(unused_mut)]
    let mut scope_3 = writer.prefix("CapacityReservationTarget");
    if let Some(var_4) = &input.capacity_reservation_target {
        crate::protocol_serde::shape_capacity_reservation_target::ser_capacity_reservation_target(scope_3, var_4)?;
    }
    Ok(())
}