Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 593 Bytes

lambda_invoker.md

File metadata and controls

28 lines (22 loc) · 593 Bytes

lambda-invoker

Pipeline component for invoking other Lambda functions. Typically used in edge cases.

Input event format

Example Lambda event input for this function:

{
    "input": { "befolkning-zxy": "s3/key/to/file.csv" },
    "output": "s3/key/or/prefix",
    "config": {
      "arn" : "arn:some:arn:to:a:function",
      "lambda_config": { "type": "status" }
    }
}

Will invoke another function with the following payload:

{
    "input": { "befolkning-zxy": "s3/key/to/file.csv" },
    "output": "s3/key/or/prefix",
    "config": { "type": "status" }
}