Handling failure when consuming a Kinesis Data Stream can keep your iterator healthy and allow your consumer to retry attempts that are likely to recover or abandon messages that are inherentl bad
import { Construct } from "constructs";
import * as cdk from "aws-cdk-lib";
import { OneLambda } from "./one-lambda";
import { StackProps } from "aws-cdk-lib";
export class MainStack extends cdk.Stack {
constructor(scope: Construct, id: string, props: StackProps) {
super(scope, id, props);
// creates the Lambda that will be exercised to demonstrate the failure
new OneLambda(this, "OneLambdaConstruct");
}
}
git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/cdk-kinesis-poison-pill