pub fn ser_claim_game_server_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::claim_game_server::ClaimGameServerInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.game_server_group_name {
encoder.str("GameServerGroupName").str(var_1.as_str());
}
if let Some(var_2) = &input.game_server_id {
encoder.str("GameServerId").str(var_2.as_str());
}
if let Some(var_3) = &input.game_server_data {
encoder.str("GameServerData").str(var_3.as_str());
}
if let Some(var_4) = &input.filter_option {
encoder.str("FilterOption");
crate::protocol_serde::shape_claim_filter_option::ser_claim_filter_option(encoder, var_4)?;
}
encoder.end();
Ok(())
}