lambdaextras

package
v1.5.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 10, 2023 License: Apache-2.0 Imports: 2 Imported by: 7

Documentation

Overview

Package lambdaextras contains extras for building Go based lambdas.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type HandlerFunc

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

The HandlerFunc type is an adapter to allow the use of ordinary functions as Lambda Handlers. If f is a function with the appropriate signature, HandlerFunc(f) is a Handler that calls f.

func GenericHandler added in v1.5.0

func GenericHandler[I any, O any](handler func(context.Context, I) (O, error)) HandlerFunc

GenericHandler converts a typed lambda handler into a Handler func

func (HandlerFunc) Invoke

func (f HandlerFunc) Invoke(ctx context.Context, payload []byte) ([]byte, error)

Invoke calls f(ctx, payload).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL