# File lib/aws/record/attributes/string.rb, line 39
      def self.type_cast raw_value, options = {}
        case raw_value
        when nil     then nil
        when ''      then options[:preserve_empty_strings] ? '' : nil
        when String  then raw_value
        else raw_value.to_s
        end
      end