# File lib/aws/record/validator.rb, line 105
      def blank? value
        case value
        when nil        then true
        when String     then value !~ /\S/
        else
          !value
        end
      end