...

Package awslambda

import "github.com/go-kit/kit/transport/awslambda"
Overview
Index

Overview ▾

Package awslambda provides an AWS Lambda transport layer.

func DefaultErrorEncoder

func DefaultErrorEncoder(ctx context.Context, err error) ([]byte, error)

DefaultErrorEncoder defines the default behavior of encoding an error response, where it returns nil, and the error itself.

type DecodeRequestFunc

DecodeRequestFunc extracts a user-domain request object from an AWS Lambda payload.

type DecodeRequestFunc func(context.Context, []byte) (interface{}, error)

type EncodeResponseFunc

EncodeResponseFunc encodes the passed response object into []byte, ready to be sent as AWS Lambda response.

type EncodeResponseFunc func(context.Context, interface{}) ([]byte, error)

type ErrorEncoder

ErrorEncoder is responsible for encoding an error.

type ErrorEncoder func(ctx context.Context, err error) ([]byte, error)

type Handler

Handler wraps an endpoint.

type Handler struct {
    // contains filtered or unexported fields
}

func NewHandler

func NewHandler(
    e endpoint.Endpoint,
    dec DecodeRequestFunc,
    enc EncodeResponseFunc,
    options ...HandlerOption,
) *Handler

NewHandler constructs a new handler, which implements the AWS lambda.Handler interface.

func (*Handler) Invoke

func (h *Handler) Invoke(
    ctx context.Context,
    payload []byte,
) (resp []byte, err error)

Invoke represents implementation of the AWS lambda.Handler interface.

type HandlerFinalizerFunc

HandlerFinalizerFunc is executed at the end of Invoke. This can be used for logging purposes.

type HandlerFinalizerFunc func(ctx context.Context, resp []byte, err error)

type HandlerOption

HandlerOption sets an optional parameter for handlers.

type HandlerOption func(*Handler)

func HandlerAfter

func HandlerAfter(after ...HandlerResponseFunc) HandlerOption

HandlerAfter functions are only executed after invoking the endpoint but prior to returning a response.

func HandlerBefore

func HandlerBefore(before ...HandlerRequestFunc) HandlerOption

HandlerBefore functions are executed on the payload byte, before the request is decoded.

func HandlerErrorEncoder

func HandlerErrorEncoder(ee ErrorEncoder) HandlerOption

HandlerErrorEncoder is used to encode errors.

func HandlerErrorHandler

func HandlerErrorHandler(errorHandler transport.ErrorHandler) HandlerOption

HandlerErrorHandler is used to handle non-terminal errors. By default, non-terminal errors are ignored.

func HandlerErrorLogger

func HandlerErrorLogger(logger log.Logger) HandlerOption

HandlerErrorLogger is used to log non-terminal errors. By default, no errors are logged. Deprecated: Use HandlerErrorHandler instead.

func HandlerFinalizer

func HandlerFinalizer(f ...HandlerFinalizerFunc) HandlerOption

HandlerFinalizer sets finalizer which are called at the end of request. By default no finalizer is registered.

type HandlerRequestFunc

HandlerRequestFunc may take information from the received payload and use it to place items in the request scoped context. HandlerRequestFuncs are executed prior to invoking the endpoint and decoding of the payload.

type HandlerRequestFunc func(ctx context.Context, payload []byte) context.Context

type HandlerResponseFunc

HandlerResponseFunc may take information from a request context and use it to manipulate the response before it's marshaled. HandlerResponseFunc are executed after invoking the endpoint but prior to returning a response.

type HandlerResponseFunc func(ctx context.Context, response interface{}) context.Context