# File lib/aws/policy.rb, line 641
      def type_notation(example)
        case example
        when String
          "String"
        when Numeric
          "Numeric"
        when Time, Date
          "Date"
        when true, false
          "Bool"
        end
      end