@cfn-modules/lambda-event-source-kinesis-data-stream

0.1.0 • Public • Published

Build Status NPM version

cfn-modules: AWS Lambda event source: Kinesis data stream

Kinesis data stream event source for AWS Lambda function.

Install

Install Node.js and npm first!

npm i @cfn-modules/lambda-event-source-kinesis-data-stream

Usage

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'cfn-modules example'
Resources:
  EventSource:
    Type: 'AWS::CloudFormation::Stack'
    Properties:
      Parameters:
        LambdaModule: !GetAtt 'Function.Outputs.StackName' # required
        DataStreamModule: !GetAtt 'DataStream.Outputs.StackName' # required
        BatchSize: '10' # optional
        StartingPosition: 'LATEST' # optional
      TemplateURL: './node_modules/@cfn-modules/lambda-event-source-kinesis-data-stream/module.yml'

Parameters

Name Description Default Required? Allowed values
LambdaModule Stack name of lambda-function module yes
DataStreamModule Stack name of kinesis-data-stream module no
BatchSize The largest number of messages that Lambda retrieves from your stream at once. 10 no [1-10000]
StartingPosition The position in the stream where Lambda starts reading LATEST no [LATEST, TRIM_HORIZON]

Readme

Keywords

Package Sidebar

Install

npm i @cfn-modules/lambda-event-source-kinesis-data-stream

Weekly Downloads

1

Version

0.1.0

License

Apache-2.0

Unpacked Size

19.1 kB

Total Files

12

Last publish

Collaborators

  • andreaswittig
  • hellomichibye