class Aws::Rails::SqsActiveJob::Configuration

def to_h

Other tags:
    Api: - private
def to_h
  h = {}
  self.instance_variables.each do |v|
    v_sym = v.to_s.gsub('@', '').to_sym
    val = self.instance_variable_get(v)
    h[v_sym] = val
  end
  h
end