0.0.1 • Published 10 years ago

serverless-event-constant-inputs v0.0.1

Weekly downloads
60
License
ISC
Repository
github
Last release
10 years ago

Serverless event constant inputs

Allows you to add constant inputs to events in Serverless 1.0. This is defined in https://aws.amazon.com/blogs/compute/simply-serverless-use-constant-values-in-cloudwatch-event-triggered-lambda-functions/ .

Build Status Coverage Status npm

How to use

Add either a simple string as an input field to an event schedule, or an object.

functions:
  esi:
    handler: handler.esi
    events:
      - schedule:
          rate: cron(0 1 * * ? *)
          enabled: true
          input:
            provider: stubhub
            is_delta: true
      - schedule:
          rate: cron(0 2 * * ? *)
          enabled: true
          input: '{"provider": "see_tickets"}'

The above shows adding input values to 2 scheduled events. The first as an object and the second as a string.