Amazon Kinesis Data Streams to Lambda to DynamoDB

Create a serverless app using Kinesis Data Streams, Lambda, and DynamoDB.

Amazon Kinesis Data StreamsAWS LambdaAmazon DynamoDB
package com.myorg;

import software.amazon.awscdk.App;
import software.amazon.awscdk.Environment;
import software.amazon.awscdk.StackProps;

import java.util.Arrays;

public class KinesisLambdaDdbCdkJavaApp {
    public static void main(final String[] args) {
        App app = new App();

        new KinesisLambdaDdbCdkJavaStack(app, "KinesisLambdaDdbCdkJavaStack", StackProps.builder()
                // If you don't specify 'env', this stack will be environment-agnostic.
                // Account/Region-dependent features and context lookups will not work,
                // but a single synthesized template can be deployed anywhere.

                // Uncomment the next block to specialize this stack for the AWS Account
                // and Region that are implied by the current CLI configuration.
                /*
                .env(Environment.builder()
                        .account(System.getenv("CDK_DEFAULT_ACCOUNT"))
                        .region(System.getenv("CDK_DEFAULT_REGION"))
                        .build())
                */

                // Uncomment the next block if you know exactly what Account and Region you
                // want to deploy the stack to.
                /*
                .env(Environment.builder()
                        .account("123456789012")
                        .region("us-east-1")
                        .build())
                */

                // For more information, see https://docs.aws.amazon.com/cdk/latest/guide/environments.html
                .build());

        app.synth();
    }
}

Download

git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/kinesis-lambda-ddb-cdk-java

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page