aws-sdk-ec2 1.224.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_instance_market_options_request(
    mut writer: ::aws_smithy_query::QueryValueWriter,
    input: &crate::types::InstanceMarketOptionsRequest,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    #[allow(unused_mut)]
    let mut scope_1 = writer.prefix("MarketType");
    if let Some(var_2) = &input.market_type {
        scope_1.string(var_2.as_str());
    }
    #[allow(unused_mut)]
    let mut scope_3 = writer.prefix("SpotOptions");
    if let Some(var_4) = &input.spot_options {
        crate::protocol_serde::shape_spot_market_options::ser_spot_market_options(scope_3, var_4)?;
    }
    Ok(())
}