def unwrapQuotedString()

in backup-parameter-store/src/main/scala/com/gu/aws/wrappers.scala [29:35]


  def unwrapQuotedString(input: String): String = {
    val quotedString = "\"(.*)\"".r
    input match {
      case quotedString(content) => content
      case content => content
    }
  }