pub fn ser_delete_vpc_peering_authorization_input_input(
encoder: &mut ::aws_smithy_cbor::Encoder,
#[allow(unused)] input: &crate::operation::delete_vpc_peering_authorization::DeleteVpcPeeringAuthorizationInput,
) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
encoder.begin_map();
if let Some(var_1) = &input.game_lift_aws_account_id {
encoder.str("GameLiftAwsAccountId").str(var_1.as_str());
}
if let Some(var_2) = &input.peer_vpc_id {
encoder.str("PeerVpcId").str(var_2.as_str());
}
encoder.end();
Ok(())
}