github.com/mweagle/Sparta@v1.15.0/archetype/firehose_build.go (about) 1 // +build !lambdabinary 2 3 package archetype 4 5 import ( 6 "context" 7 8 awsEvents "github.com/aws/aws-lambda-go/events" 9 ) 10 11 // The core lambda transformation function 12 func lambdaXForm(ctx context.Context, 13 kinesisEvent awsEvents.KinesisFirehoseEvent) (*awsEvents.KinesisFirehoseResponse, error) { 14 15 // NOP... 16 return nil, nil 17 }