module AwsLambdaHandler

NOTE: aws has LambdaHandler already defined as a class so we need an aws prefix here

Public Instance Methods

call(event:, context:) click to toggle source

select event handler

# File lib/modulator/lambda_handler.rb, line 8
def call(event:, context:)
  # TODO: implement handlers for other event types based on some event key, like AwsS3EventHandler
  AwsApiGatewayEventHandler.call(event: event, context: context)
end