# File lib/aws/record/attributes/boolean.rb, line 22
      def self.type_cast raw_value, options = {}
        case raw_value
        when nil then nil
        when '' then nil
        when false, 'false', '0', 0 then false
        else true
        end
      end