aws-sdk-gamelift 1.119.0

AWS SDK for Amazon GameLift
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
pub fn ser_game_server_group_auto_scaling_policy(
    encoder: &mut ::aws_smithy_cbor::Encoder,
    #[allow(unused)] input: &crate::types::GameServerGroupAutoScalingPolicy,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
    encoder.begin_map();
    if let Some(var_1) = &input.estimated_instance_warmup {
        encoder.str("EstimatedInstanceWarmup").integer(*var_1);
    }
    if let Some(var_2) = &input.target_tracking_configuration {
        encoder.str("TargetTrackingConfiguration");
        crate::protocol_serde::shape_target_tracking_configuration::ser_target_tracking_configuration(encoder, var_2)?;
    }
    encoder.end();
    Ok(())
}