# File lib/aws/ec2/vpn_gateway.rb, line 107
      def exists?
        begin
          client.describe_vpn_gateways(:vpn_gateway_ids => [id])
          true
        rescue Errors::InvalidVPNGatewayID::NotFound
          false
        end
      end