Packages

o

io.github.howardjohn.lambda

ProxyEncoding

object ProxyEncoding

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ProxyEncoding
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class ProxyRequest(httpMethod: String, path: String, headers: Option[Map[String, String]], body: Option[String], queryStringParameters: Option[Map[String, String]]) extends Product with Serializable
  2. case class ProxyResponse(statusCode: Int, headers: Map[String, String], body: String) extends Product with Serializable

Value Members

  1. def encodeResponse(response: ProxyResponse): String
  2. def parseRequest(rawInput: String): Either[Error, ProxyRequest]
  3. def reconstructPath(request: ProxyRequest): String