module PG::AWS_RDS_IAM::ConnectionInfo

Constants

ParseError

Public Class Methods

new(connection_string) click to toggle source
# File lib/pg/aws_rds_iam/connection_info.rb, line 10
def self.new(connection_string)
  if URI.match?(connection_string)
    URI.new(connection_string)
  else
    KeywordValueString.new(connection_string)
  end
end