# File lib/aws/record/model/attributes.rb, line 297
        def boolean_attr name, options = {}
  
          attr = add_attribute(Attributes::BooleanAttr.new(name, options))
  
          # add the boolean question mark method
          define_method("#{attr.name}?") do
            !!__send__(attr.name)
          end
  
        end