to_h

in lib/aws/active_job/sqs/configuration.rb [197:206]


        def to_h
          h = {}
          instance_variables.each do |v|
            v_sym = v.to_s.delete('@').to_sym
            val = instance_variable_get(v)
            h[v_sym] = val
          end
          h
        end