Versions in this module Expand all Collapse all v0 v0.0.5 Apr 25, 2021 v0.0.4 Apr 25, 2021 Changes in this version + type ApiGatewayRequester struct + func NewApiGatewayRequester(matchedPath string, request *events.APIGatewayProxyRequest) *ApiGatewayRequester + func (self *ApiGatewayRequester) Accept() []byte + func (self *ApiGatewayRequester) ContentType() []byte + func (self *ApiGatewayRequester) MatchedPath() string + func (self *ApiGatewayRequester) Method() []byte + func (self *ApiGatewayRequester) Path() []byte + func (self *ApiGatewayRequester) PathParam(param string) (string, bool) + func (self *ApiGatewayRequester) QueryParam(param string) ([]byte, bool) + func (self *ApiGatewayRequester) RequestBody() []byte + func (self *ApiGatewayRequester) RequestId() string + func (self *ApiGatewayRequester) ResponseContentType() string + func (self *ApiGatewayRequester) SetResponseContentType(contentType string) + func (self *ApiGatewayRequester) SetResponseHeader(header string, value string) + func (self *ApiGatewayRequester) VisitHeaders(f func(key []byte, value []byte)) + type HandlerAPIGateway func(context.Context, events.APIGatewayProxyRequest) (events.APIGatewayProxyResponse, error) + type Lambda struct + func New(endpointConfig *endpoint.Config, matchedPath string, handler endpoint.Handler) *Lambda + func (self *Lambda) Start()