Sha256: 457480e41764e7bff87710dd5b7ff63c9670355ec6db99ac19683b4e351e814f
Contents?: true
Size: 638 Bytes
Versions: 142
Compression:
Stored size: 638 Bytes
Contents
# Task vs Functions # # Functions is inherited by Job::Base and Controller::Base. # It is holds the event and context is used for processing when you # call the lambda function. # # Task is a holds information for the method that gets registered # with method_add and is used to build up the CloudFormation Lambda # Function definition. # # Overview diagram : http://bit.ly/2zQeoF3 module Jets::Lambda autoload :Dsl, "jets/lambda/dsl" autoload :FunctionConstructor, "jets/lambda/function_constructor" autoload :Function, "jets/lambda/function" autoload :Functions, "jets/lambda/functions" autoload :Task, "jets/lambda/task" end
Version data entries
142 entries across 142 versions & 2 rubygems