# File lib/aws/s3/bucket_tag_collection.rb, line 66
      def set tags
        if tags.nil? or tags.empty?
          self.clear
        else
          client.put_bucket_tagging(:bucket_name => bucket.name, :tags => tags)
        end
        nil
      end