The AWS DynamoDB, Lambda, and CloudWatch Example App creates an AWS DynamoDB and Lambda function with the Python language bindings for CDK. Lambda function gets triggered from a CloudWatch event every minute.

Locate and open CloudShell using the search bar in the AWS Console:

Then, enter the following commands in sequence:
wget https://nr-serverless-workshop.s3.us-west-2.amazonaws.com/dynamodb-lambda.tar.gztar xvfz dynamodb-lambda.tar.gzcd dynamodb-lambdapython3 -m venv .envsource .env/bin/activatepip install -r requirements.txtsudo npm i -g aws-cdkcdk bootstrapcdk deployWhen prompted, type y and hit enter/return to confirm installation:

After a couple of minutes, you should see the following information in CloudShell:

Congratulations! You have successfully installed the example application that will be used for the remainder of this workshop.