@cfn-modules/kinesis-data-stream

AWS Kinesis data stream with encryption, and alerting

Usage no npm install needed!

<script type="module">
  import cfnModulesKinesisDataStream from 'https://cdn.skypack.dev/@cfn-modules/kinesis-data-stream';
</script>

README

Build Status NPM version

cfn-modules: AWS Kinesis data stream

AWS Kinesis data stream with encryption, and alerting.

Install

Install Node.js and npm first!

npm i @cfn-modules/kinesis-data-streams

Usage

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'cfn-modules example'
Resources:
  Queue:
    Type: 'AWS::CloudFormation::Stack'
    Properties:
      Parameters:
        AlertingModule: !GetAtt 'Alerting.Outputs.StackName' # optional
        KmsKeyModule: !GetAtt 'Key.Outputs.StackName' # optional
        RetentionPeriodHours: 24 # optional
        ShardCount: 1 # optional
      TemplateURL: './node_modules/@cfn-modules/kinesis-data-stream/module.yml'

Parameters

Name Description Default Required? Allowed values
AlertingModule Stack name of alerting module no
KmsKeyModule Stack name of kms-key module no
RetentionPeriodHours The number of hours for the data records that are stored in shards to remain accessible 24 no [24-168]
ShardCount The number of shards that the stream uses 1 no [1-N]

Limitations

  • Scalable: Auto scaling is not available