# File lib/aws/ec2/elastic_ip.rb, line 92
      def delete
        if vpc?
          client.release_address(:allocation_id => allocation_id)
        else
          client.release_address(:public_ip => public_ip)
        end
        nil
      end